缓存处理是个相当头疼的事情,要根据需要综合应用不同的策略。总的来说有以下几种情况:1.URL缓存,例如社交应用的帖子浏览,要在viewDidAppear:里面进行URL缓存。简单来说就是用NSURLCache类,首先在AppDelegate.m里面的- (BOOL)application:(UIAp...
分类:
移动开发 时间:
2014-11-24 16:38:37
阅读次数:
177
Target membership是指XCode中,一个文件属于哪一个工程,在XCode左侧的工程面板中选中一个文件,在XCode右侧的属性面板中会显示其Target Membership,如下图。当前的文件AppDelegate.m属于书谱这个Target。Target Membership的一些...
分类:
移动开发 时间:
2014-11-23 21:24:08
阅读次数:
268
ZBMainViewController *main=[[ZBMainViewController alloc] init]; ZBBaseController *navigationcontroller=[[ZBBaseController alloc] initWithRootViewCo...
分类:
移动开发 时间:
2014-11-22 00:37:28
阅读次数:
225
//AppDelegate.m- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Override point for...
分类:
移动开发 时间:
2014-11-21 01:14:50
阅读次数:
175
项目中需要检测来电状态,使用了CTCallCenter,在AppDelegate中,代码如下:?CTCallCenter *callCenter = [[CTCallCenter alloc] init]; callCenter.callEventHandler = ^(CTCall *call) ...
分类:
移动开发 时间:
2014-11-20 21:46:26
阅读次数:
178
AppDelegate: self.window = UIWindow(frame: UIScreen.mainScreen().bounds) self.window!.backgroundColor = UIColor.whiteColor() self...
分类:
移动开发 时间:
2014-11-19 15:24:47
阅读次数:
207
1 打开建好的T32 Cocos2dx-3.2的一个项目
2 设置Cocos显示窗口的位置是在AppDelegate.cpp中:
3 设置自适应窗口大小的代码是在上面的代码后面紧接着就添加:
glview->setDesignResolutionSize(480,320, ResolutionPolicy::EXACT_FIT);
...
分类:
其他好文 时间:
2014-11-16 08:14:20
阅读次数:
150
推送通知的步骤:1、询问是否允许推送通知。2、如果用户允许在APPDELEGATE 中实现- (void)application:(UIApplication*)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData*...
分类:
移动开发 时间:
2014-11-13 22:23:08
阅读次数:
337
没发现居然有三四个月没写博客了,好惭愧。都是加班太多了,还好现在换了一家,还是得继续写啊。主要是学习了http://onevcat.com/上的内容写的笔记,并自己动手操作了一下。已经排好版了,懒得再重新写,代码就几行,在appdelegate.m里,如下,主要是storyboard。 UIT...
分类:
移动开发 时间:
2014-11-13 16:06:11
阅读次数:
266
在AppDelegate里的代码
视图控制器里的...
分类:
其他好文 时间:
2014-11-12 21:19:53
阅读次数:
156