-
Notifications
You must be signed in to change notification settings - Fork 0
View in Code Objective C 0
Azmal Tech edited this page Dec 27, 2016
·
1 revision
-
UIView* view = [[UIView alloc] initWithFrame:CGRectMake(0,0,320,480)];
-
UILabel* label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];
-
[label setFont:[UIFont boldSystemFontOfSize:18]];
-
[label setTextAlignment:UITextAlignmentCenter];
-
[label setBackgroundColor:[UIColor clearColor]];
-
[label setTextColor:[UIColor whiteColor]];
-
[label setText:@"Hello"];
-
[view addSubview:label];
-
[window addSubview:view];