Swift - 搜索条(UISearchBar)的用法
http://www.hangge.com/blog/cache/detail_562.html
1,下面是一个搜索条的使用样例,功能如下:
--- Main.storyboard ---
47
2,效果图
3,代码如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
import
UIKit
class
ViewController
:
UIViewController
,
UISearchBarDelegate
ottom:auto!important; float:none!important; height:auto!important; left:auto!important; line-height:1.5em!important; margin:0px!important; outline:0px!important; overflow:visible!important; padding:1px 0px!important; position:static!important; right:auto!important; top:auto!important; vertical-align:baseline!important; width:auto!important; font-family:Consolas,
UITableViewDataSource
UITableViewDelegate
{
// 引用通过storyboard创建的控件
@IBOutlet
var
searchBar :
UISearchBar
!
tableView :
UITableView
!
// 所有组件
ctrls:[
String
] = [
"Label"
ottom:auto!important; float:none!important; height:auto!important; left:auto!important; line-height:1.5em!important; margin:0px!important; outline:0px!important; overflow:visible!important; padding:1px 0px!important; position:static!important; right:auto!important; top:auto!important; vertical-align:baseline!important; width:auto!important; font-family:Consolas,
"Button1"
"Button2"
"Switch"
]
// 搜索匹配的结果,Table View使用这个数组作为datasource
ctrlsel:[
String
] = []
override
func
viewDidLoad() {
super
.viewDidLoad()
// 起始加载全部内容
self
.ctrlsel =
.ctrls
// 注册TableViewCell
.tableView.registerClass(
UITableViewCell
.
ottom:auto!important; float:none!important; height:auto!important; left:auto!important; line-height:1.5em!important; margin:0px!important; outline:0px!important; overflow:visible!important; padding:1px 0px!important; position:static!important; right:auto!important; top:auto!important; vertical-align:baseline!important; width:auto!important; font-family:Consolas,forCellReuseIdentifier:
"SwiftCell"
)
}
// 返回表格行数(也就是返回控件数)
tableView(tableView:
UITableView
ottom:auto!important; float:none!important; height:auto!important; left:auto!important; line-height:1.5em!important; margin:0px!important; outline:0px!important; overflow:visible!important; padding:1px 0px!important; position:static!important; right:auto!important; top:auto!important; vertical-align:baseline!important; width:auto!important; font-family:Consolas,numberOfRowsInSection section:
Int
) ->
Int
{
return
.ctrlsel.count
}
tableView(tableView:
ottom:auto!important; float:none!important; height:auto!important; left:auto!important; line-height:1.5em!important; margin:0px!important; outline:0px!important; overflow:visible!important; padding:1px 0px!important; position:static!important; right:auto!important; top:auto!important; vertical-align:baseline!important; width:auto!important; font-family:Consolas,cellForRowAtIndexPath indexPath:
NSIndexPath
)
->
UITableViewCell
{
let
identify:
=
"SwiftCell"
// 同一形式的单元格重复使用,在声明时已注册
cell = tableView.dequeueReusableCellWithIdentifier(identify,forIndexPath: indexPath)
as
UITableViewCell
cell.textLabel?.text =
.ctrlsel[indexPath.row]
return
cell
}
searchBar(searchBar:
!,textDidChange searchText:
!) {
if
searchText ==
""
{
.ctrls
}
.ctrlsel = []
for
ctrl
in
.ctrls {
ctrl.lowercaseString.hasPrefix(searchText) {
.ctrlsel.append(ctrl)
}
}
}
// 刷新Table View显示
.tableView.reloadData()
}
//func searchBarSearchButtonClicked(searchBar: UISearchBar!) {
//searchBar.resignFirstResponder()
//}
didReceiveMemoryWarning() {
.didReceiveMemoryWarning()
// dispose of any resources that can be recreated.
}
}
|
--- Main.storyboard ---
<?
xml
version
=
"1.0"
encoding
"UTF-8"
standalone
"no"
?>
<
document
type
"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB"
"3.0"
toolsversion
"6254"
systemVersion
"14B25"
targetRuntime
"iOS.CocoaTouch"
propertyAccessControl
"none"
useAutolayout
"YES"
useTraitCollections
initialViewController
"BYZ-38-t0r"
>
dependencies
>
plugIn
identifier
"com.apple.InterfaceBuilder.IBCocoaTouchPlugin"
"6247"
/>
</
>
scenes
>
<!--View Controller-->
scene
sceneID
"tne-QT-ifu"
>
objects
>
viewController
id
"BYZ-38-t0r"
customClass
"ViewController"
customModule
"SwiftInAction_008_012"
customModuleProvider
"target"
sceneMemberID
"viewController"
>
layoutGuides
>
viewControllerLayoutGuide
"top"
"y3c-jy-aDJ"
/>
>
rect
"frame"
x
"0.0"
y
width
"600"
height
"600"
/>
autoresizingMask
"autoresizingMask"
widthSizable
heightSizable
"YES"
/>
subviews
>
tableView
clipsSubviews
fixedFrame
alwaysBounceVertical
dataMode
"prototypes"
style
"plain"
separatorStyle
"default"
rowHeight
"44"
sectionHeaderHeight
"22"
sectionFooterHeight
translatesAutoresizingMaskIntoConstraints
"NO"
"eUR-Ky-A8I"
>
"6"
"32"
"320"
"440"
/>
color
"backgroundColor"
white
"1"
alpha
colorSpace
"calibratedWhite"
/>
searchBar
"tableHeaderView"
"redraw"
"8pv-hH-OQ9"
>
"80"
"218"
"44"
/>
flexibleMaxX
flexibleMaxY
/>
textInputTraits
"textInputTraits"
/>
connections
>
outlet
property
"delegate"
destination
"0l9-UU-iHJ"
/>
>
searchBar
>
>
"dataSource"
"o1t-B2-xHp"
/>
"p1t-kn-J9Q"
/>
>
tableView
>
>
"custom"
customColorSpace
/>
view
>
>
"searchBar"
"8pv-hH-OQ9"
"B0M-ya-PE5"
/>
"tableView"
"eUR-Ky-A8I"
"YCI-P6-0gY"
/>
>
viewController
>
>
scene
>
>
document
>
|
上一篇: Swift - 将表格UITableView滚动条移动到底部 |
---|
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。