iOS 定义全局变量

来源:互联网 发布:手机有声朗读软件 编辑:程序博客网 时间:2024/06/07 17:34

在AppDelegate.h文件中设置全局变量:
@interface ***AppDelegate{
NSString *myName;
}
@property (nonatomic, retain) NSString *myName;
@end
在AppDelegate.m文件中实现全局变量:
@synthesize myName;
假如在 CallBack页面调用,在CallBack.m中包含AppDelegate.h文件,并定义一个代理实例,如下
#import "AppDelegate.h"
在 - (void)****{
AppDelegate *myDelegate = [[UIApplication sharedApplication] delegate];
myDelegte.myName = @"123 ";
}

0 0
原创粉丝点击