这个标志是什么意思?

时间:2011-08-15 10:00:26

标签: iphone uiview uitableview

我是iphone开发的新手。我从任何地方获取代码,但我无法理解这个符号(=)的用途,如下图所示。image

2 个答案:

答案 0 :(得分:6)

这意味着您可以在表格中向上或向下移动行。

如果您想回复这些操作,请查看您的UITableViewDataSource。 “重新排序表行”部分是相关部分。

答案 1 :(得分:2)

这个标志表明你可以在UItable类中上下移动这个行你将获得功能 这定义如下。

  

//覆盖以支持重新排列表格视图。

- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath {
//write your code

}

  

//覆盖以支持表视图的条件重新排列。

 - (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {
// Return NO if you do not want the item to be re-orderable.
return YES;

}