web-dev-qa-db-ja.com

編集モードのUITableViewで複数の行を選択するにはどうすればよいですか?

右上にある[選択]ボタンをクリックしたときにメッセージアプリのように複数の行を選択できる編集モードに転送するにはどうすればよいですか、丸をタップして複数のメッセージを選択できます。

このような:

enter image description here

本当にたくさん検索しましたが何も見つかりませんでした。誰か助けてもらえますか?いくつかのアドバイス

13
user4809833

セットする

tableView.allowsMultipleSelectionDuringEditing = true

スクリーンショット

デモコード

class TableviewController:UITableViewController{
    override func viewDidLoad() {
        super.viewDidLoad()
        tableView.allowsMultipleSelectionDuringEditing = true
        tableView.setEditing(true, animated: false)
    }
    override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath)
        cell.textLabel?.text = "\(indexPath.row)"
        return cell
    }
    override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return 10
    }
}
44
Leo

ストーリーボードを使用している場合は、次のようにします。

enter image description here

7
Islam Q.
NSMutableArray *selected;

viewcontroller.hファイルでそれをクリアしてください。

selected =[[NSMutableArray alloc]init];
for (int i=0; i<[YOUR_ARRAY count]; i++) // Number of Rows count
        {
            [selected addObject:@"NO"];
        }

上記のコードを使用して、選択した配列に同じ数の「NO」を追加します。そのため、YOUR_ARRAYをテーブルに表示するデータ配列に置き換える必要がありました。

    if(![[selected objectAtIndex:indexPath.row] isEqualToString:@"NO"])
{

    cell.accessoryType=UITableViewCellAccessoryCheckmark;

}

else
{
    cell.accessoryType=UITableViewCellAccessoryNone;
}

上記のコードを-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPathに挿入します

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)path {
UITableViewCell *cell = [tableView cellForRowAtIndexPath:path];


if (cell.accessoryType == UITableViewCellAccessoryNone) {
    cell.accessoryType = UITableViewCellAccessoryCheckmark;
    [selected replaceObjectAtIndex:path.row withObject:@"YES"];
} else {
    cell.accessoryType = UITableViewCellAccessoryNone;
    [selected replaceObjectAtIndex:path.row withObject:@"NO"];
}

}

これも正しく動作するように配置します。

3
ash999