仅有的幸福2017-04-27 09:05:52
你这个cell里的数字是可以变化的,我猜你大概是想直接从cell里取。可以自己构造NSIndexPath,我假设你要取数据都是在section 0里,然后总共有numCount行,数字是放在numLable里:
var numString = ""
for i in 0 ..< numCount {
numString += tableView.cellForRowAtIndexPath(NSIndexPath(forRow: i, inSection: 0)).numLable.text
}