码迷,mamicode.com
首页 > 其他好文 > 详细

Objective-C 静态常量

时间:2014-11-10 19:41:42      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:sp   div   on   cti   line   as   tt   c   table   

1
2
3
// Constants.h
extern NSString * const MyOwnConstant;
extern NSString * const YetAnotherConstant;

最后,在Constants.m中通过赋值定义常量:

1
2
3
// Constants.m
NSString * const MyOwnConstant = @"myOwnConstant";
NSString * const  YetAnotherConstant = @"yetAnotherConstant";

Objective-C 静态常量

标签:sp   div   on   cti   line   as   tt   c   table   

原文地址:http://www.cnblogs.com/scaptain/p/4087643.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!