添加了平滑的下啦加载

This commit is contained in:
wu736139669
2015-01-19 21:18:54 +08:00
parent 5c97ecc8f3
commit a1f5959544
40 changed files with 1142 additions and 10 deletions
+5 -1
View File
@@ -7,7 +7,7 @@
//
#import "AppDelegate.h"
#import "ViewController.h"
@interface AppDelegate ()
@end
@@ -17,6 +17,10 @@
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
self.window=[[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
UINavigationController *nav=[[[UINavigationController alloc]initWithRootViewController:[ViewController alloc]]init];
self.window.rootViewController=nav;
[self.window makeKeyAndVisible];
return YES;
}