引导页1
先在AppDelegate里做一个判断,如果程序是第一次运行也就是在本地没有运行过的记录 (可以通过NSUserDefaults来记录程序是否有运行过的痕迹)2
判断如果程序是第一次运行就把AppDelegate的rootViewController等于引导页,引导页是一个viewCont...
分类:
移动开发 时间:
2014-05-18 20:18:14
阅读次数:
290
代码创建:
1、appdelegate 把contoller放到跟controller下
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWi...
分类:
移动开发 时间:
2014-05-15 14:57:06
阅读次数:
456
1.AppDelegate.h//模板默认引入程序需要使用“类”的框架,即UIKit.h头文件,使它包含在程序中#import//此处@class声明程序中的“类”名称为MyViewController@classMyViewController;//此处@interface声明程序界面的名称为My...
分类:
移动开发 时间:
2014-05-09 20:42:44
阅读次数:
346
一, 首先为window创建根视图控制器 在AppDelegate.h文件中-
(BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions//为w...
分类:
移动开发 时间:
2014-05-07 20:18:38
阅读次数:
398
可视化编程 : 5.0之前 xib 5.0之后
Storyboard注意事项:1.在AppDelegate中不用代码初始化一个window 2.在general 设置 Main
Interface(创建的时候自动设置的)weak可以指向 但是没有拥有权 strong有拥有权单例特性:1.唯一性 创建...
分类:
移动开发 时间:
2014-05-07 19:26:26
阅读次数:
1667
在iPhone开发中,使用全局变量有这么几种实现方法:1、在AppDelegate中声明并初始化全局变量然后在需要使用该变量的地方插入如下的代码://取得AppDelegate,在iOS中,AppDelegat被设计成了单例模式xxxAppDelegate
*appDelegate = [[UIAp...
分类:
其他好文 时间:
2014-05-01 12:26:19
阅读次数:
417
iOS开发中访问相册摄像像头
源码下载地址http://download.csdn.net/detail/jingjingxujiayou/7270479
在AppDelegate.m文件中
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launch...
分类:
移动开发 时间:
2014-04-30 22:27:38
阅读次数:
497
【控制器切换Push】【?Code】1.创建3个xib和控制器2.在AppDelegate中设置首先启动的页面-
(BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)...
分类:
其他好文 时间:
2014-04-28 13:23:03
阅读次数:
428