标签: swift function static
基本上我正在进行一些计算,每当我重新加载表视图时,我需要在Int中使用0启动cellForRowAtIndexPath变量。
Int
0
cellForRowAtIndexPath
在Objective-C中,我在UITableView的cellForRowAtIndexPath中使用了它
static int rowSum= 0; rowSum += [[myArray objectAtIndex:indexPath.Row] intValue];
我们如何用Swift语言做到这一点?建议的链接不会这样做。