MSCellAccessory icon indicating copy to clipboard operation
MSCellAccessory copied to clipboard

UITableViewCell accessoryType can easily customizing the colors. support Flat Design same as iOS7.

Results 4 MSCellAccessory issues
Sort by recently updated
recently updated
newest added

MSCellAccessory should not block table view delegate method didSelectRowAtIndexPath for some accessory types (ex. FLAT_DISCLOSURE_INDICATOR) Example: cell.accessoryView = [MSCellAccessory accessoryWithType:FLAT_DISCLOSURE_INDICATOR colors:@[[UIColor tableViewAccessoryColor]]]; If I tap close to accessoryView nothing happens...

Hi can you create the same in Swift ? Just wanted to learn how the custom initialiser works in swift.

The pod refers to an older source I believe. Can you push an update? Thanks.

I brought it in view bridging-header, and put this line of code in the UITableViewCell layoutSubviews call. ``` swift self.accessoryView = MSCellAccessory(type: .DISCLOSURE_INDICATOR, color: UIColor.redColor()) ``` It never gets passed...