Guest User

Untitled

a guest
Jul 21st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. -(id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
  2. NSLog(@"Hi there!");
  3. UIView *myContentView = self.contentView;
  4. entryTextLabel = [[UILabel alloc] initWithFrame:CGRectMake(50, 100, 300, 10)];
  5. entryTextLabel.text = @"Problem?";
  6. entryTextLabel.backgroundColor = [UIColor brownColor];
  7.  
  8. [myContentView addSubview:entryTextLabel];
  9. return self;
  10. };
Add Comment
Please, Sign In to add comment