macOS/iOS API解説

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

目次

animationDelay

アニメーションの遅れ値を返します

解説

アニメーションの遅れ値を返します。
初期設定値は0.03(秒)です。

返り値

( NSTimeInterval )

時間間隔

引数

フレームワーク

ApplicationKit

クラス

NSProgressIndicator

Instance Methods

使用可能

10.0

参照

- animate:

例文

#import "MyObject.h"

@implementation MyObject

- (IBAction)button:(id)sender
{
    NSLog([NSString stringWithFormat:@"%f",[myOutlet animationDelay]]);
}

- (IBAction)slider:(id)sender
{
}

@end