Tuesday, 13 October 2015

How to Add Plus Button In TableView Cell Ios/iphone

UIButton *button = [UIButton buttonWithType:UIButtonTypeContactAdd];
[button setUserInteractionEnabled:NO];
cell.accessoryView = button;