我试图在App中编写支票,在用户输入第一个视图的信息后,视图会变为会议的tableView。目前我面临两个问题;第一个问题是单元格滚过标题并在状态栏下,我该如何解决这个问题?第二个问题是向下滚动拉出标题,是否有办法改变它?
我在网上看了一下,有些人建议使用Nav Controller并在其中放置一个UItable视图。我试图避开StoryBoard,所以我想知道如何使用代码执行此操作。
到目前为止,这是我的代码
class MeetingsViewController: UITableViewController, UITableViewDelegate, {
@IBOutlet var meetingsView : UITableView
var meetings = []
override func viewDidLoad() {
super.viewDidLoad()
title = "Meetings"
![enter image description here][1]tableView.registerClass(MeetingCell.self, forCellReuseIdentifier: "cell")
let edgeInsets = UIEdgeInsetsMake(20, 0, 0, 0)
self.tableView.contentInset = edgeInsets
self.tableView.scrollIndicatorInsets = edgeInsets
}
override func tableView(tableView: UITableView?, numberOfRowsInSection section: Int) -> Int {
return 10
}
override func tableView(tableView: UITableView!, titleForHeaderInSection section: Int) -> String!
{
return "Meetings"
}
override func tableView(tableView: UITableView?, cellForRowAtIndexPath indexPath: NSIndexPath?) -> UITableViewCell? {
let cell = tableView!.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as MeetingCell
if let path = indexPath {
//let entry = news[path.row] as NSDictionary
cell.text = "Meeting Name "
cell.detailTextLabel.text = "Time "
}
return cell
}
}
答案 0 :(得分:2)
在你的控制器的init()中试试这个:
let height = UIApplication.sharedApplication().statusBarFrame.size.height
let insets = UIEdgeInsets(top: height, left: 0, bottom: 0, right: 0)
self.tableView.contentInset = insets
self.tableView.scrollIndicatorInsets = insets