美文网首页
测试插入代码

测试插入代码

作者: univer2012 | 来源:发表于2015-11-26 16:09 被阅读24次
#define NSLocalizedString(key, comment) \
     [[NSBundle mainBundle] localizedStringForKey:(key) value:@"" table:nil]
#define NSLocalizedStringFromTable(key, tbl, comment) \
     [[NSBundle mainBundle] localizedStringForKey:(key) value:@"" table:(tbl)]
#define NSLocalizedStringFromTableInBundle(key, tbl, bundle, comment) \
     [bundle localizedStringForKey:(key) value:@"" table:(tbl)]
#define NSLocalizedStringWithDefaultValue(key, tbl, bundle, val, comment) \
     [bundle localizedStringForKey:(key) value:(val) table:(tbl)]

测试:

注意,下面的request应为NSMutableURLRequest,即可变类型

相关文章

网友评论

      本文标题:测试插入代码

      本文链接:https://www.haomeiwen.com/subject/bwrdhttx.html