Advertisement
Guest User

Untitled

a guest
May 4th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. for (int i = 0; i < 10; i++){
  2. UITextView *textView = [[UITextView alloc] initWithFrame:CGRectMake(0, yPos, 375,height)];
  3. [textView setBackgroundColor:[UIColor lightGrayColor]]; //set different property like this
  4. UIColor *borderColor = [UIColor colorWithRed:204.0/255.0 green:204.0/255.0 blue:204.0/255.0 alpha:1.0];
  5. textView.layer.borderColor = borderColor.CGColor;
  6. textView.layer.borderWidth = 1.0;
  7. textView.layer.cornerRadius = 5.0;
  8. textView.textAlignment=NSTextAlignmentRight;
  9. textView.editable=NO;
  10.  
  11. [CommentScrooll addSubview:textView ];
  12. // CommentScroll Is the name of my viewcontroller
  13. yPos += (height + padding);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement