摘要: 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)