UITableView can not find member ...
待解决问题:
UITableView.reloadSections
UITableView.rowHeight
can not find member reloadSections,rowHeight,why,why,why!!
经过傍晚的问题排查,发现,UITableView.reloadSections 出现can not find member reloadSections原因和UITableView.rowHeight还不太一样。
首先 UITableView.reloadSections:
self.tableView?.reloadSections(NSIndexSet(indexesInRange: 0..<1), withRowAnimation: UITableViewRowAnimation.None)
是因为 Swift中的Range和NSRange是不一样的。
关于Range 到NSRange的转化,可以参考http://stackoverflow.com/questions/27040924/nsrange-from-swift-range
这里可以这么处理:
self.tableView?.reloadSections(NSIndexSet(indexesInRange: NSMakeRange(0, 1)), withRowAnimation: UITableViewRowAnimation.None)
其次 UITableView.rowHeight:
通过自动Xcode的引导,我写出来tableView?.rowHeight,但是这样出现了can not find member rowHeight。
但事实上,因为tableView是可选的。应该先解包。tableView!.rowHeight。