S eda1a14b50ee24bcab19b62f40858e76 iPhoneアプリ開発

登録について

http://developer.apple.com/jp/programs/iph...#compare

スクリーンサイズの取得

UIScreen* screen = [UIScreen mainScreen];
CGSize size = screen.bounds.size;

アニメーション終了後に処理する

http://forums.pragprog.com/forums/57/topic...
-(void) doSomeAnimationForDuration:(float) seconds {

NSNumber *duration = [NSNumber numberWithFloat:seconds * 0.5f];
[UIView beginAnimations:@"foo" context:duration];
[UIView setAnimationDuration:seconds/2.0f];
[UIView setAnimationDelegate:self];
[UIView setAnimationDidStopSelector:@selector(someAnimationDidStop:finished:context:)];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
// change some property values here  
[UIView commitAnimations];
}

// delegate
-(void) someAnimationDidStop:(NSString *)animationID finished:(BOOL)finished context:(void *)duration {
  // end actions
}
めんど…。

マルチタッチを有効にする

これやらないと[touches count]が2以上にならない
view.multipleTouchEnabled = true;

参考本

iPhoneSafariで動かすWebサイトの作り方と、iPhoneネイティブアプリの作り方が半々。幅広い。とりあえず一冊でいいならこれ。


かなりハック的な感じ。やりたかったことが載ってたので買ってよかった


今のところ一番役に立ってる。全編Interface Builderを排除した解説になっている。
IB使わないコーディングはブラックボックスにならないので理解しやすい。

もしかして

    他の人の「iPhoneアプリ開発」

    S eda1a14b50ee24bcab19b62f40858e76

    無所属ソフトウェアエンジニア

    (1722words)

    最新

      最新エントリ

        関連ツイート