1 accessoryType
typedef NS_ENUM(NSInteger, UITableViewCellAccessoryType) {
    UITableViewCellAccessoryNone,                   // don‘t show any accessory view
    UITableViewCellAccessoryDisclosureIndicator,    // regular chevron. doesn‘t track
    UITableViewCellAccessoryDetailDisclosureButton, // info button w/ chevron. tracks
    UITableViewCellAccessoryCheckmark,              // checkmark. doesn‘t track
    UITableViewCellAccessoryDetailButton NS_ENUM_AVAILABLE_IOS(7_0) // info button. tracks
};
2 accessoryTypeView 可放一些switch
//cell.accessoryView = [[UISwitch alloc]init];
    cell.accessoryView = [UIButton buttonWithType:UIButtonTypeContactAdd];
2 backgroundColor
backgroundView //可放一些圆形的底图
3 selectedBackgroundView
 UIView *iv = [[UIView alloc]init];
    iv.backgroundColor = [UIColor redColor];
    cell.selectedBackgroundView =iv;
原文:http://www.cnblogs.com/lihaozhou/p/4417253.html