Tạo một dự án với ứng dụng Empty và Thêm bất kỳ bộ điều khiển chế độ xem nào (tôi đã thêm TestViewController tại đây)
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions: (NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch.
TestViewController *test = [[TestViewController alloc] initWithNibName:@"TestViewController" bundle:nil];
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:test];
self.window.rootViewController = nav;
[self.window makeKeyAndVisible];
return YES;
}
CÁC BƯỚC ĐỂ XÓA ARC
1) Trong cài đặt xây dựng, đặt Đếm Tham chiếu Tự động thành KHÔNG .
//////////////////////////////////////////////////////// /////////////////////////KẾT THÚC//////////////////////// //////////////////////////////////////////////////////// //////////////////////////////////////////////////////// //////////////////////////////////////////////////////// //////////////////////////////////////////////////////// /////////////////////////
Nếu bạn đã Tạo ứng dụng với bảng phân cảnh và ARC thì
CÁC BƯỚC ĐỂ XÓA BAN TRUYỆN
1) Xóa tệp Main.storyboard khỏi dự án của bạn.
2) Thêm các tệp mới với xib cho bộ điều khiển của bạn, nếu nó không được thêm vào các nguồn đã biên dịch trong các giai đoạn xây dựng thì hãy thêm vào đó theo cách thủ công.
3) Di chuyển chính tập tin kịch bản tên cơ sở từ plist .
4) Thay đổi tệp appdelegate didFinishLaunchingWithOptions và thêm:
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] ;
[self.window makeKeyAndVisible];
giống như :
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] ;
// Override point for customization after application launch.
TestViewController *test = [[TestViewController alloc] initWithNibName:@"TestViewController" bundle:nil];
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:test];
self.window.rootViewController = nav;
[self.window makeKeyAndVisible];
return YES;
}
Bây giờ, trong ví dụ trên, bạn phải quản lý quản lý bộ nhớ theo cách thủ công như,
self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
[test release];
CÁC BƯỚC ĐỂ XÓA ARC
1) Trong cài đặt xây dựng, đặt Đếm Tham chiếu Tự động thành KHÔNG .