技术的乐趣在于分享,欢迎多多交流,多多沟通。
全部博文(877)
发布时间:2016-01-13 11:07:41
http://blog.csdn.net/uxyheaven/article/details/48261699# iOS中的delegate的用法和规范 转载请注明出处http://blog.csdn.net/uxyheaven/article/details/48261699delegate是Objective-C编写的应用中各种对象之间互相调用的主要方式之一. 通常情况下, 对象可以接收的消息都通过在接口文件中声明的方法来表示.........【阅读全文】
发布时间:2015-12-03 17:16:24
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{ self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; // Override point for customization after application launch. self..........【阅读全文】
发布时间:2015-10-26 16:00:08
http://blog.csdn.net/huifeidexin_1/article/details/85867621.在AppDelegate中添加如下代码: (1) self.window.rootViewController = self.iNavController; (2)// [self.window addSubview:self.iNavController.view];在iOS6.0 中只能使用(1).........【阅读全文】