// // YYTableViewCell.m // YYKitExample // // Created by ibireme on 15/9/10. // Copyright (c) 2015 ibireme. All rights reserved. // #import "YYTableViewCell.h" @implementation YYTableViewCell - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier { self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]; for (UIView *view in self.subviews) { if([view isKindOfClass:[UIScrollView class]]) { ((UIScrollView *)view).delaysContentTouches = NO; // Remove touch delay for iOS 7 break; } } self.selectionStyle = UITableViewCellSelectionStyleNone; self.backgroundView.backgroundColor = [UIColor clearColor]; self.contentView.backgroundColor = [UIColor clearColor]; self.backgroundColor = [UIColor clearColor]; return self; } @end