1 #import "AppDelegate.h" 2 3 @interface AppDelegate () 4 5 @end 6 7 @implementation AppDelegate 8 9 10 - (BOOL)application:(UIApplication *)appl...
分类:
其他好文 时间:
2015-06-30 23:31:57
阅读次数:
224
1、程序启动后的开始动画程序启动后可以加载一个简单的动画界面来介绍程序或者用户信息。可以使用一个xib来描述界面。并且如果想在程序加载完成后第一个加载这个xib文件,需要在Appdelegate中手动加载这个xib// 通过stroyboard启动,跟控制器的view并不会在程序启动完成的时候添加到...
分类:
移动开发 时间:
2015-06-30 21:53:03
阅读次数:
219
//// AppDelegate.m// UI_Lesson1//// Created by 李洪鹏 on 15/6/29.// Copyright (c) 2015年 李洪鹏. All rights reserved.//#import "AppDelegate.h"#define kwindth...
分类:
其他好文 时间:
2015-06-29 21:56:37
阅读次数:
117
代码:AppDelegate.m- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Override point fo...
分类:
其他好文 时间:
2015-06-29 16:41:35
阅读次数:
102
1.如图可对整个项目设置的所支持的横竖屏2.若一个项目中只有某些控制器可以横屏其他都为竖屏 步骤如下(以只有播放视频的控制器可以横屏 当全屏播放时自动横屏)(1)只勾选第一个home键在下(2)在Appdelegate.h中 添加属性@property(nonatomic)BOOL allowRot...
分类:
其他好文 时间:
2015-06-29 14:37:42
阅读次数:
197
1 #import "AppDelegate.h" 2 #import "SearchController.h" 3 @interface AppDelegate () 4 @property (nonatomic,strong)UITableView *table; 5 @property (n....
分类:
其他好文 时间:
2015-06-27 22:36:50
阅读次数:
159
1 #import "AppDelegate.h" 2 #import 3 4 @interface AppDelegate () 5 @property (nonatomic ,strong)UIImageView *birdImage; 6 @end 7 8 @implementatio...
分类:
系统相关 时间:
2015-06-27 01:17:27
阅读次数:
140
1 #import "AppDelegate.h" 2 #import 3 4 @interface AppDelegate () 5 @property (nonatomic ,strong)UIImageView *birdImage; 6 @end 7 8 @implementatio...
分类:
其他好文 时间:
2015-06-27 01:12:37
阅读次数:
120
1 #import "AppDelegate.h" 2 3 @interface AppDelegate () 4 5 @end 6 7 @implementation AppDelegate 8 9 10 - (BOOL)appli...
分类:
其他好文 时间:
2015-06-26 17:35:27
阅读次数:
167
#import "AppDelegate.h"@interface AppDelegate ()@end@implementation AppDelegate- (BOOL)application:(UIApplication *)application didFinishLaunchingWith...
分类:
其他好文 时间:
2015-06-26 01:37:49
阅读次数:
100