IOS--纯代码方式编写View

AppDelegate:

 1 #import "AppDelegate.h"
 2 #import "TestController.h"
 3 
 4 @interface AppDelegate ()
 5 @property(nonatomic,strong)TestController *controller;
 6 @end
 7 
 8 @implementation AppDelegate
 9 
10 
11 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
12     // Override point for customization after application launch.
13     self.window = [[UIWindow alloc]init];
14 
15     self.controller = [[TestController alloc]init];
16 
17     self.window.rootViewController = self.controller;
18     
19     [self.window makeKeyAndVisible];
20     return YES;
21 }

TestController:

 1 #import "TestController.h"
 2 #import "RootView.h"
 3 
 4 @interface TestController()
 5 
 6 @property(nonatomic,strong)RootView *rootView;
 7 
 8 @end
 9 
10 @implementation TestController
11 
12 - (void)viewDidLoad
13 {
14     [super viewDidLoad];
15     
16     self.rootView = [[RootView alloc]initWithFrame:[[UIScreen mainScreen]bounds]];
17     self.view = self.rootView;
18 }
19 
20 @end

RootView 继承 UIView

 1 #import "RootView.h"
 2 
 3 @interface RootView()
 4 
 5 @end
 6 
 7 @implementation RootView
 8 
 9 -(instancetype)initWithFrame:(CGRect)frame
10 {
11     self = [super initWithFrame:frame];
12     if (self) {
13         self.backgroundColor = [UIColor blueColor];
14     }
15     return self;
16 }
17 
18 @end

 

转载于:https://www.cnblogs.com/yuge790615/p/5219898.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值