码迷,mamicode.com
首页 > 其他好文 > 详细

全局变量的使用

时间:2014-05-01 12:26:19      阅读:417      评论:0      收藏:0      [点我收藏+]

标签:class   code   ext   string   int   文件   har   http   com   app   for   

在iPhone开发中,使用全局变量有这么几种实现方法:

 

1、在AppDelegate中声明并初始化全局变量

然后在需要使用该变量的地方插入如下的代码:

 

//取得AppDelegate,在iOS中,AppDelegat被设计成了单例模式

xxxAppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
appDelegate.Your Variable

 

2、使用 extern 关键字

         2.1 新建Constants.h文件(文件名根据需要自己取),用于存放全局变量;

         2.2 在Constants.h中写入你需要的全局变量名,例如:

                  NSString *url;//指针类型
                  int count;//非指针类型

                  注意:在定义全局变量的时候不能初始化,否则会报错!

         2.3  在需要用到全局变量的文件中引入此文件:

                   #import "Constants.h"  

         2.4 给全局变量初始化或者赋值:

         extern NSString *url;  

         url = [[NSString alloc] initWithFormat:@"http://www.google.com"];//指针类型;需要alloc

         extern int count;

         count = 0;//非指针类型

         2.5  使用全局变量:和使用普通变量一样使用。

 

3、单例的全局访问方法:

@interface MySingleton : NSObject
{
?①    NSString *testGlobal;
}

+ (MySingleton *)sharedSingleton;
 
?②@property (nonxxxx,retain) NSString *testGlobal;

@end

@implementation MySingleton
 
?③@synthesize testGlobal;

+ (MySingleton *)sharedSingleton
 
{
  static MySingleton *sharedSingleton;

  @synchronized(self)
  {
    if (!sharedSingleton)
      sharedSingleton = [[MySingleton alloc] init];

    return sharedSingleton;
  }
}

@end
 

把①、②、③的地方换成你想要的东西,
使用例:
[MySingleton sharedSingleton].testGlobal = @"test";

全局变量的使用,码迷,mamicode.com

全局变量的使用

标签:class   code   ext   string   int   文件   har   http   com   app   for   

原文地址:http://www.cnblogs.com/yulang314/p/3701383.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!