WEB开发网      濠电娀娼ч崐濠氬疾椤愶附鍋熸い鏍ㄧ〒闂勫嫰鏌﹀Ο渚Ц闁诲氦顕ч湁婵犲﹤楠告禍鍓х磼鏉堛劌绗氶柟宄版嚇閹晠宕归銈嗘濠电偞鍨堕幐鎾磻閹捐秮褰掓偐閻戞﹩妫勯梺鎼炲妼鐎涒晝绮嬪澶樻晝闁挎繂鏌婇敃鍌涚厵閻庢稒锚閻忥絾绻濇繝鍐ㄧ伌闁诡垰鍟村畷鐔碱敂閸♀晙绱樺┑鐐差嚟婵儳螞閸曨剚鍙忛柍鍝勬噹缁€澶嬬箾閹存繄锛嶆鐐灲閹綊宕惰濡插鏌涢妸銉ヮ劉缂佸倸绉归弫鎾绘晸閿燂拷 ---闂備焦瀵уú鈺呭箯閿燂拷
开发学院手机开发iPhone 开发 iPhone SDK 开发之 UIKit 使用 阅读

iPhone SDK 开发之 UIKit 使用

 2010-02-25 04:20:00 来源:WEB开发网 闂備線娼уΛ鎾箯閿燂拷闂備礁鎲¢崹鐢垫崲閹扮増鍎嶆い鎺戝€甸崑鎾斥槈濞嗗秳娌紓鍌氱▌閹凤拷濠电姭鎷冮崨顓濈捕闂侀潧娲ゅú銊╁焵椤掍胶鈯曢柕鍥╁仧缁辩偤鏁撻敓锟�闂備線娼уΛ鎾箯閿燂拷  闂備胶枪缁绘鈻嶉弴銏犳瀬闁绘劖顐煎☉妯锋瀻闁归偊鍓涘▔姘舵⒑閸涘⿴娈旀繛灞傚妼閳绘捇骞嬪┑鎰濡炪倖姊婚崢褏鎲撮敓锟�
核心提示:helloWorld = [ [ NSString alloc ] initWithString: @"Hello, World!" ];woahDizzy = [ [ NSString alloc ] initWithString: @"Woah, I'm Dizzy!"

helloWorld = [ [ NSString alloc ] initWithString: @"Hello, World!" ];

woahDizzy = [ [ NSString alloc ] initWithString: @"Woah, I'm Dizzy!" ];

}

return self;

}

- (void)loadView {

[ super loadView ];

textView = [ [ UITextView alloc ] initWithFrame:

[ [ UIScreen mainScreen ] applicationFrame ]

];

textView.text = helloWorld;

self.view = textView;

}

-(BOOL)shouldAutorotateToInterfaceOrientation:

(UIInterfaceOrientation)interfaceOrientation

{

return YES;

}

- (void)didRotateFromInterfaceOrientation:

(UIInterfaceOrientation)fromInterfaceOrientation

{

textView.text = woahDizzy;

}

- (void)viewDidLoad {

[ super viewDidLoad ];

}

- (void)didReceiveMemoryWarning {

[ super didReceiveMemoryWarning ];

}

- (void)dealloc {

[ helloWorld release ];

[ woahDizzy release ];

[ textView release ];

[ super dealloc ];

}

@end

Example 3-11. ControllerDemo main (main.m)

#import <UIKit/UIKit.h>

int main(int argc, char *argv[]) {

NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];

int retVal = UIApplicationMain(argc, argv, nil, @"ControllerDemoAppDelegate");

[pool release];

return retVal;

}

上一页  1 2 3 4 

Tags:iPhone SDK 开发

编辑录入:coldstar [复制链接] [打 印]
赞助商链接