像下面 UITableView 中实现复数选择的设置,需要用到 Undocumented API。
 

 
首先,如下所示,在实现了 UITableViewDelegate 的类中实现下面的方法
 
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView
           editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
    return 3;
}
 
其中 UITableViewCellEditingStyle 的定义在 SDK 中如下所示:
 
typedef enum {
   UITableViewCellEditingStyleNone,
   UITableViewCellEditingStyleDelete,
   UITableViewCellEditingStyleInsert
} UITableViewCellEditingStyle
 
也就是说,我们使用了私有的TableView风格。另外取得被选择的item可以使用 indexPathsForSelectedRows 方法,该方法也也是私有的。
 
- (NSArray *)indexPathsForSelectedRows;
 
另外,我们也可以使用公开的方法来一个一个的选择/解除cell,而不用使用私有API。
 
- (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath;
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;
- (NSIndexPath *)tableView:(UITableView *)tableView willDeselectRowAtIndexPath:(NSIndexPath *)indexPath;
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath;
 
 
职场 IOS 休闲 IOS

0

收藏

上一篇:iPhone开发技巧之私有API... 下一篇:IPhone 常用控件的用法
noavatar_middle.gif
zhy000

401篇文章,78W+人气,0粉丝

关注