2009-07-05から1日間の記事一覧

beginanimations uiview

iphone sdkの教科書を読んでいて、 p230のアニメーション、 [UIView beginAnimation:nil content:nil]; だとエラーになる(動くけどアニメーションしない)ので、 [UIView beginAnimation:nil]; としたらちゃんとアニメーションした。(warning: 'UIView' may…

UIButton frame cgrectmake

i++; myButton.frame = CGRectMake( x, y, width, height + i );高さがどんどん大きくなるボタン。

UIButton setTitle (iphone)

myString = @"hoge"; [myButton setTitle: myString forState:UIControlStateNormal];UIButtonの表示名を動的に変えたいとき。

iphone int 2 string (NSString)

[NSString stringWithFormat:@"%d", myInt] --- NSString *myString; myString = [NSString stringWithFormat: @Your score is "%d", 20; NSLog (myString);intからStringに変換。objective-c