-(void)GetUpdate { NSString *nowVersion = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"]; NSString * file = [NSString st...
分类:
移动开发 时间:
2015-05-26 22:45:54
阅读次数:
147
從 NSDictionary 取值的時候有兩個方法,objectForKey: 和 valueForKey:,這兩個方法具體有什麼不同呢?
先從 NSDictionary 文檔中來看這兩個方法的定義:
objectForKey: returns the value associated with aKey, or nil if no value is associated with a...
分类:
移动开发 时间:
2015-05-21 22:40:58
阅读次数:
240
_imagePickerController.allowsEditing = YES; //一定要选择允许编辑UIImage *image = [info objectForKey:@"UIImagePickerControllerEditedImage”]; //image一定要取选择框范围内的图...
分类:
其他好文 时间:
2015-05-08 19:43:39
阅读次数:
192
一般用imagePickerController获取到dic以后常用的方法是使用UIImage *image = [dic objectForKey:@"UIImagePickerControllerOriginalImage"];来获取原图,但是我使用这个方法获取到得图片并不是原图,而是尺寸经过压...
分类:
其他好文 时间:
2015-05-07 11:58:07
阅读次数:
124
NSString?*version?=?[[[NSBundle?mainBundle]?infoDictionary]?objectForKey:@"CFBundleShortVersionString"];
获取当前版本号...
分类:
其他好文 时间:
2015-04-28 12:13:54
阅读次数:
108
//存入 1 for (NSDictionary *dic in self.lrcList) { 2 3 int i = 0; 4 5 NSString *timeStr = [dic objectForKey:@"lrctime"]; 6 7 ...
分类:
其他好文 时间:
2015-04-28 09:28:39
阅读次数:
102
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
if([userDefaults objectForKey:@"autoLogIn"] != nil && [userDefaults objectForKey:@"ra...
分类:
其他好文 时间:
2015-04-21 09:34:25
阅读次数:
141
写了一个ios磁盘缓存的模块,基于ISDishCache,添加文件校验,相同的文件只会缓存一次,采用了引用计数的方式对文件进行淘汰,之前的按文件访问时间进行淘汰会对经常使用的文件造成误删,使用很方便,一般用到就两个方法cacheObejct和objectForKey,将key和要缓存的文件放进去就可以了,地址https://github.com/abbothzhang/ZHCache,欢迎使用,欢...
分类:
移动开发 时间:
2015-04-19 22:50:03
阅读次数:
151
当用通知中心 去传值的时候 通常 传的 都是字典 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; NSDictionary *dic=[defaults objectForKey:@"forcedUpdateRe.....
分类:
其他好文 时间:
2015-04-09 13:27:36
阅读次数:
126
#define kVersionId? ? ? [[[NSBundle mainBundle] infoDictionary]objectForKey:@"CFBundleVersion"]? ? ? ? ? // 版本ID #define kVersionNumber? [[[NSBundle mainBundle] infoDictionary]objectFor...
分类:
其他好文 时间:
2015-04-04 13:45:53
阅读次数:
158