本文共 404 字,大约阅读时间需要 1 分钟。
ios开发中,全局变量设置和调用方法如下:在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 =(AppDelegate *) [[UIApplication sharedApplication] delegate]; myDelegte.myName = @"我是全局变量呀 ";}
转载地址:http://cexlx.baihongyu.com/