这个标志的含义是啥?
Posted
技术标签:
【中文标题】这个标志的含义是啥?【英文标题】:What is the meaning of this sign?这个标志的含义是什么? 【发布时间】:2011-08-15 10:00:26 【问题描述】:我是 iphone 开发的新手。我从任何地方获取代码,但我无法理解这个符号 (=) 的用途,如下图所示。
【问题讨论】:
【参考方案1】:表示可以在表格中上下移动行。
如果您想对这些操作做出回应,请查看您的 UITableViewDataSource
。 “重新排序表行”部分是相关部分。
【讨论】:
使用了哪个函数或参数?【参考方案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;
【讨论】:
以上是关于这个标志的含义是啥?的主要内容,如果未能解决你的问题,请参考以下文章