ios开发点滴-常量使用

来源:互联网 发布:qq群机器人源码 编辑:程序博客网 时间:2024/06/13 10:26

这个其实是半个转摘。。。

在objc文件的头文件中,

#import <Foundation/Foundation.h>

extern NSString * const kInitURL;

@interface Constants : NSObject {

}

@end


#import "Constants.h"

NSString * const kInitURL = @"http://marshal.easymorse.com";

@implementation Constants

@end

使用的话就是直接 #import "Constants.h"

这里需要说明的是extern的作用,这个关键词可以用在变量或者函数前,主要是提示编译器该变量或者函数已经在其他地方中定义过了。



原创粉丝点击