上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 18 下一页
摘要: 1 // 2 // ViewController.m 3 // UIWindowsApp 4 // 7 // 8 9 #import "ViewController.h" 10 #import "ViewController2.h" 11 12 @interface ViewController () 13 14 @end 15 16 @im... 阅读全文
posted @ 2017-09-29 15:26 vector11248 阅读(254) 评论(0) 推荐(0)
摘要: 1 // 2 // ViewController.m 3 // UIWindowsApp 4 // 7 // 8 9 #import "ViewController.h" 10 #import "ViewController2.h" 11 12 @interface ViewController () 13 14 @end 15 16 @implementation V... 阅读全文
posted @ 2017-09-28 12:13 vector11248 阅读(263) 评论(0) 推荐(0)
摘要: 1 // 2 // ViewController.m 3 // UIWindowsApp 4 // 5 // Created by on 21/09/2017. 6 // 8 9 #import "ViewController.h" 10 #import "ViewController2.h" 11 12 @interface ViewControl... 阅读全文
posted @ 2017-09-28 11:25 vector11248 阅读(179) 评论(0) 推荐(0)
摘要: 1 // 2 // ViewController.m 3 // UIWindowsApp 4 // 5 // Created by on 21/09/2017. 6 // Copyright © 2017 . All rights reserved. 7 // 8 9 #import "ViewController.h" 10 #import "ViewContro... 阅读全文
posted @ 2017-09-27 21:05 vector11248 阅读(170) 评论(0) 推荐(0)
摘要: 1 - (void)viewDidLoad { 2 [super viewDidLoad]; 3 //滚动视图,可以对屏幕内容进行滚屏查看。 4 5 _scrollView = [[UIScrollView alloc]init]; 6 7 _scrollView.frame = CGRectMake(10, 50, 300, 4... 阅读全文
posted @ 2017-09-27 18:18 vector11248 阅读(253) 评论(0) 推荐(0)
摘要: 1 - (void)viewDidLoad { 2 [super viewDidLoad]; 3 //滚动视图,可以对屏幕内容进行滚屏查看。 4 5 UIScrollView* sv = [[UIScrollView alloc]init]; 6 7 sv.frame = CGRectMake(0, 0, 320, 576); ... 阅读全文
posted @ 2017-09-27 15:29 vector11248 阅读(130) 评论(0) 推荐(0)
摘要: 1 @synthesize textField = _textField; 2 3 4 - (void)viewDidLoad { 5 [super viewDidLoad]; 6 7 self.textField = [[UITextField alloc]init]; 8 9 self.textField.frame = CG... 阅读全文
posted @ 2017-09-27 10:58 vector11248 阅读(109) 评论(0) 推荐(0)
摘要: 1 @synthesize alertView = _alertView; 2 @synthesize activityIndicator = _activityIndicator; 3 4 - (void)viewDidLoad { 5 [super viewDidLoad]; 6 7 for(int i=0;i 2 { 3 //定义一个警告提示框... 阅读全文
posted @ 2017-09-25 18:33 vector11248 阅读(188) 评论(0) 推荐(0)
摘要: 1 @synthesize alertView = _alertView; 2 @synthesize activityIndicator = _activityIndicator; 3 4 - (void)viewDidLoad { 5 [super viewDidLoad]; 6 7 for(int i=0;i 2 { 3 //定义一个警告提示框... 阅读全文
posted @ 2017-09-25 18:33 vector11248 阅读(121) 评论(0) 推荐(0)
摘要: 1 @synthesize stepper = _stepper; 2 @synthesize segContol = _segContol; 3 4 - (void)viewDidLoad { 5 [super viewDidLoad]; 6 7 _stepper = [[UIStepper alloc]init]; 8 9 _stepper.f... 阅读全文
posted @ 2017-09-25 14:22 vector11248 阅读(153) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 18 下一页