设为首页 加入收藏

TOP

appDelegate全局变量
2014-11-23 17:55:46 】 浏览:4589
Tags:appDelegate 全局 变量

方法一

.h

#import
@interface AppDelegate : UIResponder
{
NSString* LoginInfo;
}
@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) NSString *LoginInfo;
@end

.m

@implementation AppDelegate
@synthesize LoginInfo;

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
LoginInfo=@"hhjjhhjhh";

}

//初始化

要用到或要修改的地方

包含

#import "AppDelegate.h"

AppDelegate *appDelegate=[[UIApplication sharedApplication] delegate];

NSLog(@"+++++++%@",appDelegate.LoginInfo);

appDelegate.LoginInfo=@"修改";

NSLog(@"+++++++%@",appDelegate.LoginInfo);


方法二

使用 extern 关键字

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

2 在delegate.h中写入你需要的全局变量名,

例如: NSString *url;//指针类型

int count;//非指针类型

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

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

#import "delegate.h"

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

extern NSString *url;

url = [[NSString alloc] initWithFormat:@"http://www.google.com"];

//指针类型;需要alloc(我试过直接 url = @"www.google.com" 好像也能访问 )

extern int count;

count = 0;//非指针类型

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


】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇VC编程实现设置excel的光标样式pu.. 下一篇VC编程实现运行Excel宏 Run

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目