UITextView like iPhone Notes application

Posted by Mark on Stack Overflow See other posts from Stack Overflow or by Mark
Published on 2010-04-11T02:24:18Z Indexed on 2010/04/11 2:33 UTC
Read the original article Hit count: 311

Filed under:
|
|

I am trying to recreate the Notes application. So far I got the following:

    textView                 = [[UITextView alloc] initWithFrame:CGRectMake(25.0, 30.0, 295.0, 214.0)];
textView.delegate        = self;
textView.backgroundColor = [UIColor clearColor];
textView.font            = [UIFont fontWithName:@"MarkerFelt-Thin" size:19.0];  
[self.view addSubview:textView];

The thing I dont know is how they were able to put the date on top like a header (it is within the UIScrollView that is obvious). Also under every text there is a line where did that came from.

Does someone have an idea or a sample project I can take a look at?

© Stack Overflow or respective owner

Related posts about iphone

Related posts about Notes