参考文章
https://www.cnblogs.com/yandada/p/6098564.html
https://blog.csdn.net/li15809284891/article/details/54923273
https://blog.csdn.net/u011146511/article/details/64920969
static和extern是用来设置作用域的
const:设置变量只可以被读,不可以被修改
定义整个项目中的全局变量 .h .m
extern NSString *const home_name;
NSString *const home_name = @"name";
static NSString *const name = @"name";
网友评论