2013年11月4日 星期一
My First iOS app
終於開始自學iOS app撰寫了!
教材是Stanford University的iphone development 開放式課程CS193P 。
買了兩本工具書,精通OBJECTIVE-C程式設計以及探索IOS5程式開發實戰。
新的語言一定要Hello World! 一下。
//ViewController.h
@interface ViewController : UIViewController{
IBOutlet UISlider *slider;
IBOutlet UILabel *textValue;
IBOutlet UILabel *hello;
}
@property (strong, nonatomic) IBOutlet UISlider *slider;
@property (strong, nonatomic) IBOutlet UILabel *textValue;
@property(strong,nonatomic) IBOutlet UILabel *hello;
- (IBAction)changTextValue:(UISlider *)sender;
//ViewController.m
@synthesize slider, textValue, hello;
- (IBAction)changTextValue:(UISlider *)sender {
int SliderValue=slider.value;
textValue.text=[NSString stringWithFormat:@"%d",SliderValue];
hello.font=[UIFont systemFontOfSize:SliderValue];
訂閱:
意見 (Atom)

