2010-04-11 67 views
2

我想重新創建Notes應用程序。到目前爲止,我有以下幾點:UITextView像iPhone的筆記應用程序

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]; 

我不知道的事情是,他們如何能夠把日期在上面像頭(這是明顯的UIScrollView內)。在每篇文章的下面還有一行是從哪裏來的。

有人有想法或樣本項目我可以看看嗎?

回答

相關問題