Add the tableview line separators.

This commit is contained in:
yannick
2015-11-20 15:06:48 +01:00
parent 03ac45c673
commit 726efea874
7 changed files with 113 additions and 21 deletions
@@ -17,16 +17,12 @@
#import "TableViewCellWithLabelAndLargeTextView.h"
@implementation TableViewCellWithLabelAndLargeTextView
@synthesize inputAccessoryView;
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self)
{
// Add an accessory view to the text view in order to retrieve keyboard view.
//inputAccessoryView = [[UIView alloc] initWithFrame:CGRectZero];
//_mxkTextView.inputAccessoryView = inputAccessoryView;
}
return self;
@@ -34,7 +30,6 @@
- (void)dealloc
{
//inputAccessoryView = nil;
}
@end