Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UITextView like iPhone Notes application

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?

like image 928
Mark Avatar asked Nov 23 '25 15:11

Mark


1 Answers

Look at this: Stuff you learn from reverse-engineering Notes.app

like image 169
Alfons Avatar answered Nov 26 '25 04:11

Alfons



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!