用appDelegate的全局变量

来源:互联网 发布:网络代写小说招聘 编辑:程序博客网 时间:2024/05/29 06:36

全局变量

AppDelegate可以在整个应用程序中调用,在其他页面中可以使用代码段获取AppDelegate的全局变量:AppDelegate *appDelegate=[[UIApplication sharedApplication] delegate];

因此可以在AppDelegate.h中定义需要全局使用的变量。

0 0