2010年8月12日 星期四

iPhone 開發筆記05: UITextView “取消編輯功能” 與 “背景透明設定”

// View-Based Project

// @interface
IBOutlet UITextView *appproducer;
@property (nonatomic, retain) IBOutlet UITextView *appproducer;

// @implementation
@synthesize appproducer;

---------------------------------------------------------------------------------------------------------
接著, 將 UITextView 連到 appproducer 這個 IBOutlet, 並修改 viewDidLoad 內的程式碼:

// xxxViewController.m

- (void)viewDidLoad {
[super viewDidLoad];
....
appproducer.text = @"my company";

[appproducer setBackgroundColor:[UIColor clearColor]]; // 背景透明
[appproducer setEditable:NO]; // 取消編輯功能
....
}

沒有留言:

張貼留言

注意:只有此網誌的成員可以留言。