1.UI层次图
官网文档中有,视频中Sundy也说要学会利用官网来学习UIKit,同时也演示了如何利用官网来查找自己需要的资料。官网的资料的确详细,但是英文不好的话可能会有些困难。不过还好,这种技术性很强的文献,英文好的人也不一定能看懂,需要懂技术知识才能看懂。尝试看一下,说不定能看懂呢~
UIKit User Interface Catalog这个文档比较有帮助
2.学习组件四件套:
1)放在哪儿?层级、位置、边界?
2)组件是什么外观(大小,颜色,透明,布局适配……)
3)会不会动?有没有什么动画效果?
4)有什么行为?哪些事件?
3.UILabel
中的view中属性可以总结一下,比较有用
4.UIControl
的事件,好几个事件总结一下比较好
5.UIButton
介绍了在storyboard中属性面板中的各个属性
学好storyboard中的属性面板
6.UISegmented
selectedSegmentIndex选中的segment控件的值
往往用到的事件为:ValueChanged
numberOfSegments在storyboard中可以看到的,鼠标放上就会出现
insertSegmentWithTitle增加一个这个能在故事板中看到吗?不一定的啊
removeSegmentAtIndex减少一个
7.UITextField
storyboard中的各个属性介绍
resignFirstResponder()失去焦点,键盘消失
事件Did End On Exit与resignFirstResponder()组合使用,让键盘可以消失
8.UISlider
storyboard中的各个属性介绍
经常用到的事件为:ValueChanged
setThumbImage更换滑块图片
9.UISwitch
storyboard中的各个属性介绍
经常用到的事件为:ValueChanged
sender.on
10.UIActivityIndicatorView
storyboard中的各个属性介绍
像素固定,大小固定,不能变化。
starAnimating()
stopAnimating()
11.UIProgressView
storyboard中的各个属性介绍和UIView的属性有相似性,继承了UIView
NSTimer.scheduledTimerWithTimelnterval记步函数
12.UIStepper
storyboard中的各个属性介绍
经常用到的事件为:ValueChanged
NSString( format:转换符)值的转换
%s字符串
13.UIImage
storyboard中的各个属性介绍
animationImages图片的数组.animationImages = [UIImage(named: )]
animationRepeatCount重复次数
animationDuration循环的间隔时间
startAnimating()开始动画
stopAnimating()结束动画
14.UIAlertView
不是在控件库中,是需要靠代码实现。
有三个步骤:
1)创建UIAlertView
UIAlertView(Title: “” , message: “”, delegate:self ,cancelButtonTitle:,otherButtonTitle:).show()
2)设置按钮的事件监听
clickedButtonAtIndex
fun alertView(alertView: UIAlertView, clickedButtonAtIndex buttonIndex: Int ) {
}
3)显示UIAlertView
.show()
会用到的其他的功能命令:
alertViewStyle 变化AlertView的style,不同的样式。
textFieldAtIndex索引的值
15.UIActionSheet
不是在控件库中,是需要靠代码实现。
有三个步骤:
1)创建UIActionSheet
UIActionSheet(title:,delegate:,cancelButtonTitle:,destructiveButtonTitle:) destructiveButtonTitle是确认按钮
2)设置按钮的事件监听
clickedButtonAtIndex
fun actionSheet(actionSheet: UIActionSheet, clickedButtonAtIndex buttonIndex: Int ) {
}
3)显示UIActionSheet
.showFromBarButtonItem(…)
.showFromRect(…)显示在某个区域
.showFromTabBar(…)
.showFromToolBar(…)
.showInView(…)显示在某个视图中
常用到的其他的功能:
actionSheetStyle
16.UIDatePicker
toryboard中的各个属性介绍
经常用到的事件为:ValueChanged
NSDateFormatter格式器
var format = NSDateFormatter( )
format.dateStyle = NSDateFormatterStyle.ShortStyle//设置日期格式
format.dateFormat = “yyyy年MM月dd日,HH小时mm分ss秒” //dateFormat是可以自定义日期的显示的样式,上面的style是xcode给定的一种样式,
format.stringFromDate(sender.date) //把datepicker的date日期转为String
换成倒计时的形式后
.coutDownDuration这个命令
17.UIPickerView
delegate:UIPickerViewDelegate
都是可选的函数
行的宽度和高度;
data source:UIPickerViewDataSource
两个必选的函数
1)numberOfComponentsInPickerView //显示列数
2)numberOfRowsInComponent //显示行的数量
.delegate = self
.dataSource = self
a.定义数据
b.制定列数(Component )
c.实现显示 titleForRow
显示多行用if语句,component == 0
选择事件函数:didSelectRow
reloadComponet(1)
selectRow()让第二列出现时,焦点一直处于第一行
18.UIWebView
storyboard中的各个属性介绍
加载网页的方法:loadData ; loadHTMLString ; loadRequest ; loading
停止:stopLoading
下一步:goForward()
上一步:goBack()
刷新:reLoad()
UIWebViewDelegate委托下都是可选的函数
监听浏览器的方法
webViewDidStartLoad
webViewDidFinishLoad
19.UIToolbar
继承UIView
storyboard中的各个属性介绍
toolbar1.items?.append(buttonItem1)
20.UIScrollView
继承UIView
storyboard中的各个属性介绍
contentSize
contentInset
contentOffset偏移量
indicatorStyle
UIScrollViewDelegate的方法都是可选的
Paging Enabled可以用在引导页上
引导页可能用到的功能或者命令:
Paging Enabled
建立4个UIView
addSubview
21.UIPageControl
继承UIView
storyboard中的各个属性介绍
UIPageControl中的currentPage和UIScrollView中的contentOffset.x 组合使用可以计算处于第几页
UIScrollView中的scrollRectToVisible起到显示的作用