Andy--清风

总有一种东西能让你一直为他奋斗终身, 永不孤独寂寞
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2011年11月10日

摘要: 1.创建并初始化创建UITextView的文件,并在.h文件中写入如下代码:#import <UIKit/UIKit.h> @interface TextViewController : UIViewController <UITextViewDelegate>{ UITextView *textView;} @property (nonatomic, retain) UITextView *textView; @end在.m文件中初始化这个textview,写入代码如下:self.textView = [[[UITextView alloc] initWithFra. 阅读全文

posted @ 2011-11-10 10:22 Andy--清风 阅读(3005) 评论(4) 推荐(2) 编辑