通过 kCFBundleVersionKey 获取APP版本的versionkeyName 通过 [[[NSBundle manbundle]infoDictionary] objectForKey versionkeyName] 获取当前版本号 通过 [[NSUserDefaults standa
分类:
其他好文 时间:
2016-02-03 17:24:15
阅读次数:
228
UILabel *downloader = [[UILabel alloc]init]; NSString *downloadCount = [[LibraryArr objectAtIndex:indexPath.row]objectForKey:@"downloadCou...
分类:
其他好文 时间:
2016-01-19 12:16:58
阅读次数:
132
1.解析json数据NSDictionary *citiesDic = [CoreJSONSerialization coreJSONSerialization:@"cities"];NSDictionary *infor = [citiesDic objectForKey:@"infor"];NS...
分类:
其他好文 时间:
2016-01-12 19:20:52
阅读次数:
193
//获取剪贴板 UIPasteboard *pasteboard = [UIPasteboard generalPasteboard]; //设置剪贴板内容 pasteboard.string = [defaults objectForKey:@"shareURL"]; if...
分类:
其他好文 时间:
2016-01-03 17:13:15
阅读次数:
161
NSCache介绍NSCache 是苹果提供的一个专门用来做缓存的类使用和 NSMutableDictionary 非常相似是线程安全的当内存不足的时候,会自动清理缓存程序开始时,可以指定缓存的数量 & 成本方法1 取值? - (id)objectForKey:(id)key;2 设置对象,0成本?...
分类:
系统相关 时间:
2016-01-01 21:04:02
阅读次数:
229
版本号: NSString *key = @"CFBundleVersion"; NSString *lastVersion = [[NSUserDefaults standardUserDefaults] objectForKey:key]; NSLog(@"%@", lastV...
分类:
其他好文 时间:
2015-12-17 09:23:34
阅读次数:
182
记录下来,以防止再犯错代码如下NSString *userHeader = [userInfoDictionary objectForKey:@"photo"]; NSMutableString *mutableuserHeader = [NSMutableString stringWithS...
分类:
移动开发 时间:
2015-12-14 16:31:35
阅读次数:
429
创建UITextView//创建一个单例对象 存储_str字符串 NSUserDefaults * hd = [NSUserDefaults standardUserDefaults]; _str = [hd objectForKey:@"str"]; UIText...
分类:
移动开发 时间:
2015-11-24 06:14:31
阅读次数:
182
NSDictionary* defaults = [[NSUserDefaults standardUserDefaults] dictionaryRepresentation];if([[NSUserDefaults standardUserDefaults] objectForKey:@"mes...
分类:
其他好文 时间:
2015-09-26 21:18:27
阅读次数:
309
(lldb) po [dicData objectForKey:@"tj"](lldb) po @""(lldb) po nil(lldb) po dicTJ.counterror: Execution was interrupted, reason: Attempted to dereferenc...
分类:
数据库 时间:
2015-09-26 13:16:38
阅读次数:
402