Multiple cell selection In tableview

后端 未结 5 1843
無奈伤痛
無奈伤痛 2020-12-20 03:56

I want to upload photos to twitter , facebook and twit pic and many more. I took this in Array and displayed in Table view. I am using shareKit . I coded like if I select on

5条回答
  •  清酒与你
    2020-12-20 04:31

    You can also make it using check mark in tableview like..

    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)path {
    UITableViewCell *cell = [tableView cellForRowAtIndexPath:path];
     if (cell.accessoryType == UITableViewCellAccessoryCheckmark) {
    cell.accessoryType = UITableViewCellAccessoryNone;
    } else {
    cell.accessoryType = UITableViewCellAccessoryCheckmark;
    }
    }
    

提交回复
热议问题