码迷,mamicode.com
首页 >  
搜索关键字:appdelegate    ( 1028个结果
自定义的TabBar
//// AppDelegate.m// CustomTabBar-0818//// Created by apple on 14-8-18.// Copyright (c) 2014年 apple. All rights reserved.//#import "AppDelegate.h"...
分类:其他好文   时间:2014-08-18 23:28:33    阅读次数:296
在Appdelegate.m中有 多个handleopenURL
判断url的前缀即可,每个SDK的前缀是独一无二的, 可以打印url获取 参考代码: NSString *string =[url absoluteString];          if ([string hasPrefix:@\"微博url的前缀\"]) {                  return [WeiboSDK handleOpenURL:ur...
分类:移动开发   时间:2014-08-18 12:38:04    阅读次数:244
第一阶段的总结0816
程序运行的生命周期对象的消失和出现的过程viewDidLoad调用的时机是self.view 的getter方法的调用后根据UIApplicationMain函数,程序将进入AppDelegate.m,这个文件是xcode新建工程时自动生成的。下面看一下AppDelegate.m文件,这个关乎着应用...
分类:其他好文   时间:2014-08-16 09:41:22    阅读次数:245
iOS 推送通知流程
别的不说,现在AppDelegate.m中添加以下代码块 -?(BOOL)application:(UIApplication?*)application?didFinishLaunchingWithOptions:(NSDictionary?*)launchOptions { ????//?将这行代码插入 ????[[U...
分类:移动开发   时间:2014-08-15 18:10:09    阅读次数:284
不同storyboard间跳转
小项目中用到storyboard,可以按照模块来新建多个sb。以下是代码实现跳转实现: UIStoryboard *anSb=[UIStoryboard storyboardWithName:@"Another" bundle:nil]; AppDelegate *appDelagate...
分类:其他好文   时间:2014-08-14 01:21:17    阅读次数:175
cocos2dx基础篇(5)——浅析几个常见类
目录入口类main.cpp主要控制类AppDelegate.cpp节点类CCNode导演类CCDirector场景类CCScene层次类CCLayer精灵类CCSprite大小类CCSize坐标CCPoint矩形类CCRect数组类CCArray入口类main.cpp这是应用程序的入口类,用于创建cocos2dx的AppDelegate实例、窗口大孝以及运行程序。主要..
分类:其他好文   时间:2014-08-13 19:16:17    阅读次数:334
判断设备是不是第一次进入应用
在appdelegate中添加以下代码:if (![[NSUserDefaults standardUserDefaults] boolForKey:@"firstStart"]) { NSLog(@"第一次"); [[NSUserDefaults standardUserDef...
分类:其他好文   时间:2014-08-13 18:32:07    阅读次数:185
制作引导页[3]
制作引导页[3]第三种方法是将整个引导页写到一个controller中,是通用性最高的一种写法:)效果:源码:AppDelegate.m//// AppDelegate.m// Show//// Copyright (c) 2014年 Y.X. All rights reserved.//#i...
分类:其他好文   时间:2014-08-13 10:15:25    阅读次数:221
制作引导页[2]
制作引导页[2]第二种制作引导页的方式,是直接在AppDelegate.m方法中进行的,在AppDelegate方法中,当视图控制器变得可视化的时候时候,我们就把引导页添加上.效果还是一模一样的哦,只是比第一种方法更好而已:)源码://// AppDelegate.m// Show//// C...
分类:其他好文   时间:2014-08-12 21:46:44    阅读次数:217
005-程序启动过程
掌握 ? 1.项目中常见文件(Info.plist和pch文件的作用) ? 2.UIApplication ? 3.AppDelegate的代理方法 ? 4.iOS程序的完整启动过程(UIApplication、AppDelegate、UIWindow、UIViewControl...
分类:其他好文   时间:2014-08-12 00:05:23    阅读次数:263
1028条   上一页 1 ... 94 95 96 97 98 ... 103 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!