macOS/iOS API解説

iOS , Mac アプリケーション開発のために使われる主要フレームワークの日本語情報です。2010年代に書かれた内容です。今後更新はありません。

目次

NSAnimation

runLoopModesForAnimating

INDEX>AppKit>NSAnimation アニメーションの実行ループ 解説 アニメーションの実行ループ。 設定値 Objective-C @property(readonly, copy) NSArray *runLoopModesForAnimating Swift var runLoopModesForAnimating: [AnyObject]? { get } フレームワーク Ap…

removeProgressMark:

INDEX>AppKit>NSAnimation 進捗状況マークを取り除きます Objective-C - (void)removeProgressMark:(NSAnimationProgress)progressMark Swift func removeProgressMark(_ progressMark: NSAnimationProgress) 解説 進捗状況マークを取り除きます。 返り値 な…

progressMarks

INDEX>AppKit>NSAnimation 進捗状況マーク Objective-C @property(copy) NSArray *progressMarks Swift var progressMarks: [AnyObject] 解説 進捗状況マーク。 設定値 Objective-C Swift フレームワーク ApplicationKit クラス NSAnimation 使用可能 10.4 …

isAnimating

INDEX>AppKit>NSAnimation アニメーション中かを返します 10.9で非推奨 Objective-C - (BOOL)isAnimating Swift なし 解説 アニメーション中かを返します。 返り値 Objective-C BOOL YES/NO Swift なし 引数 フレームワーク ApplicationKit クラス NSAnimati…

initWithDuration:animationCurve:

INDEX>AppKit>NSAnimation 継続時間とアニメーションカーブで初期化して返します Objective-C -(id)initWithDuration:(NSTimeInterval)duration: animationCurve:(NSAnimationCurve)animationCurve: Swift init(duration duration: NSTimeInterval, animatio…

frameRate

INDEX>AppKit>NSAnimation アニメーションのフレームレートを返します Objective-C @property float frameRate Swift var frameRate: Float 解説 アニメーションのフレームレートを返します。 設定値 Objective-C float Swift Float フレームレート フレーム…

duration

INDEX>AppKit>NSAnimation 継続時間 Objective-C @property NSTimeInterval duration Swift var duration: NSTimeInterval 解説 継続時間 設定値 Objective-C @property NSTimeInterval duration Swift var duration: NSTimeInterval 継続時間 フレームワー…

delegate

INDEX>AppKit>NSAnimation デリゲート Objective-C @property(assign) id<NSAnimationDelegate> delegate Swift unowned(unsafe) var delegate: NSAnimationDelegate? 解説 デリゲートオブジェクト 設定値 Objective-C @property(assign) id<NSAnimationDelegate> delegate Swift unowned(unsafe) var d</nsanimationdelegate></nsanimationdelegate>…

animation:didReachProgressMark:

-(void)animation:(NSAnimation*)animation: didReachProgressMark:(NSAnimationProgress)progress: 解説 調査中... デリゲートに送信される 返り値 ( void ) なし 引数 ( NSAnimation* )animation ( NSAnimationProgress )progress フレームワーク Applicat…

animation:valueForProgress:

-(float)animation:(NSAnimation*)animation: valueForProgress:(NSAnimationProgress)progress: 解説 調査中... デリゲートに送信される 返り値 ( float ) なし 引数 ( NSAnimation* )animation ( NSAnimationProgress )progress フレームワーク Applicatio…

animationDidEnd:

アニメーションが終了したときに呼び出されます -(void)animationDidEnd:(NSAnimation*)animation: 解説 アニメーションが終了したときに呼び出されます。 デリゲートでの実装。 返り値 ( void ) なし 引数 ( NSAnimation* )animation フレームワーク Applic…

animationDidStop:

アニメーションが停止したときに呼び出されます -(void)animationDidStop:(NSAnimation*)animation: 解説 アニメーションが停止したときに呼び出されます。 返り値 ( void ) なし 引数 ( NSAnimation* )animation フレームワーク ApplicationKit クラス NSAn…

animationShouldStart:

アニメーションを開始しようとする時に呼び出されます -(BOOL)animationShouldStart:(NSAnimation*)animation: 解説 アニメーションを開始しようとする時に呼び出されます。 レシーバーはstartAnimationメッセージをデリゲートに送信します。 返り値 ( BOOL …