Revert TUITableViewCell changes

This reverts commit f5ade96e06, reversing changes made to 91d97d6c62.

They were causing too much breakage for us.
This commit is contained in:
Justin Spahr-Summers
2012-11-12 10:31:28 -08:00
parent 7b76c240a1
commit fd1bbba8f8
9 changed files with 178 additions and 555 deletions
+8
View File
@@ -106,6 +106,14 @@
[s ab_drawInRect:CGRectOffset(imageRect, imageRect.size.width, -15)];
};
}
NSTextField *textField = [[NSTextField alloc] initWithFrame:NSMakeRect(20, 180, 91, 22)];
[textField.cell setUsesSingleLineMode:YES];
[textField.cell setScrollable:YES];
TUIViewNSViewContainer *textFieldContainer = [[TUIViewNSViewContainer alloc] initWithNSView:textField];
textFieldContainer.backgroundColor = [NSColor blueColor];
[self addSubview:textFieldContainer];
}
return self;
}