1,当页面上只有一个scrollView,点击状态栏scrollView会自动滚动到顶部
比如页面上只有一个表格(
UITableView),当点击顶部状态条后,表格会像QQ、微信联系人列表那样回到最上面。
这个是iOS系统默认就有的。
2,当页面上有多个scrollView,点击状态栏时,视图都不会滚动
这时我们需要把不需要滚动的
scrollView的
scrollToTop设为
false,只留下一个。
1
|
tableView?.scrollsToTop =
false
;
|
有时我们想在状态栏点击的时候,除了让视图自动滚动外,还想执行一些其他操作。实现方式分为下面两种情况:
(1)页面上有scrollView时
如果页面上有滚动视图的话,直接在 scrollViewShouldScrollToTop()事件响应中添加相关操作即可。
(注:如过不需要滚动视图,方法内可以
return false)
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
|
import
UIKit
ViewController
:
UIViewController
,
UITableViewDelegate
UITableViewDataSource
{
var
tableView:
UITableView
?
override
func
loadView() {
super
.loadView()
}
viewDidLoad() {
.viewDidLoad()
//创建表视图
self
.tableView =
(frame:
.view.frame,style:
UITableViewStyle
.
Plain
)
.tableView!.delegate =
self
.tableView!.dataSource =
self
//创建一个重用的单元格
.tableView!.registerClass(
UITableViewCell
.
"SwiftCell"
)
.view.addSubview(
.tableView!)
}
scrollViewShouldScrollToTop(scrollView:
UIScrollView
) ->
Bool
{
print
(
"状态栏点击"
)
//不滚动表格视图
return
false
}
//在本例中,只有一个分区
numberOfSectionsInTableView(tableView:
Int
{
return
1;
}
tableView(tableView:
{
100
}
NSIndexPath
)
->
UITableViewCell
{
let
identify:
String
=
"SwiftCell"
//同一形式的单元格重复使用,在声明时已注册
cell = tableView.dequeueReusableCellWithIdentifier(identify,
forIndexPath: indexPath)
as
UITableViewCell
cell.accessoryType =
UITableViewCellAccessoryType
DisclosureIndicator
cell.textLabel?.text =
"条目数据\(indexPath.row)"
cell
}
didReceiveMemoryWarning() {
.didReceiveMemoryWarning()
}
}
|
(2)页面上没有scrollView时
如果页面上没有滚动视图,我们可以自己添加个隐藏的 scrollView(高度为0),然后同样在 scrollViewShouldScrollToTop()中添加相应的操作。
(注:不要使用 hidden或者 alpha=0隐藏 scrollView,会无法调用 scrollViewShouldScrollToTop()方法)
UIScrollViewDelegate
//创建一个隐藏的滚动视图
scrollView =
()
scrollView.frame =
CGRect
(x: 0,y: 0,width:
.view.frame.width,height: 0)
scrollView.contentSize =
CGSize
(width:
scrollView.contentOffset =
CGPoint
scrollView.delegate =
self
.view.addSubview(scrollView)
{
)
//不滚动视图
false
didReceiveMemoryWarning() {
.didReceiveMemoryWarning()
}
}
|
原文出自: www.hangge.com 转载请保留原文链接: http://www.hangge.com/blog/cache/detail_951.html 原文链接:https://www.f2er.com/swift/323320.html