macOS/iOS API解説

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

目次

UIApplication

-completeStateRestoration

INDEX>UIKit>UIApplication 解説 返り値 引数 フレームワーク UIKit クラス UIApplication 使用可能 iOS 2.0 参照 例文 編集時のバージョン OS X 10.8 iOS 6.1

UIApplicationクラス

INDEX>UIKit>UIApplication アプリケーションクラス apple 解説 iPhone/iPadアプリケーションのクラスです。 継承 UIResponder : NSObject 準拠 NSObject (NSObject) フレームワーク /System/Library/Frameworks/UIKit.framework 使用可能 iOS 2.0 以降 定義…

UIApplicationWillTerminateNotification

解説 アプリケーションが終了しようとする通知 フレームワーク UIKit クラス UIApplication 使用可能 iPhone2.0 参照 例文

UIApplicationWillResignActiveNotification

解説 アプリケーションがアクティブで無くなった通知 フレームワーク UIKit クラス UIApplication 使用可能 iPhone2.0 参照 例文

UIApplicationWillChangeStatusBarFrameNotification

解説 返り値 引数 フレームワーク UIKit クラス UIApplication Instance Methods 使用可能 iPhone2.0 参照 例文

UIApplicationDidChangeStatusBarOrientationNotification

解説 返り値 引数 フレームワーク UIKit クラス UIApplication Instance Methods 使用可能 iPhone2.0 参照 例文

UIApplicationWillChangeStatusBarOrientationNotification

解説 返り値 引数 フレームワーク UIKit クラス UIApplication Instance Methods 使用可能 iPhone2.0 参照 例文

UIApplicationSignificantTimeChangeNotification

解説 返り値 引数 フレームワーク UIKit クラス UIApplication Instance Methods 使用可能 iPhone2.0 参照 例文

UIApplicationDidReceiveMemoryWarningNotification

解説 返り値 引数 フレームワーク UIKit クラス UIApplication Instance Methods 使用可能 iPhone2.0 参照 例文

UIApplicationDidFinishLaunchingNotification

解説 アプリケーションが起動した事を知らせる通知 フレームワーク UIKit クラス UIApplication 使用可能 iPhone2.0 参照 例文

UIApplicationDidChangeStatusBarFrameNotification

解説 返り値 引数 フレームワーク UIKit クラス UIApplication Instance Methods 使用可能 iPhone2.0 参照 例文

UIApplicationDidBecomeActiveNotification

解説 返り値 引数 フレームワーク UIKit クラス UIApplication Instance Methods 使用可能 iPhone2.0 参照 例文

UIStatusBarStyle

ステータスバーのスタイル 解説 UIStatusBarStyleDefault デフォルトのステータスバースタイル UIStatusBarStyleBlackTranslucent UIStatusBarStyleBlackOpaque フレームワーク UIKit クラス UIApplication 使用可能 iPhone2.0 参照 例文 - (void)applicatio…

UIInterfaceOrientation

アプリケーションのインターフェースの向き typedef enum { UIInterfaceOrientationPortrait = UIDeviceOrientationPortrait, UIInterfaceOrientationPortraitUpsideDown = UIDeviceOrientationPortraitUpsideDown, UIInterfaceOrientationLandscapeLeft = U…

unregisterForRemoteNotifications

アップルプッシュサービスからの通知受信の登録解除します。 防災速報 ?地震,豪雨,津波を通知?出版社/メーカー: Yahoo Japan Corp.発売日: 2012/12/06メディア: アプリこの商品を含むブログ (1件) を見る 解説 アップルプッシュサービスからの通知受信の登録…

setStatusBarStyle:animated:

ステータスバーのスタイルをセットします。 オプションで新しいスタイルへのアニメーショントランジション -(void)setStatusBarStyle:(UIStatusBarStyle)statusBarStyle animated:(BOOL)animated Amazonベーシック Apple認証 (Made for iPhone取得) iPhone5…

setStatusBarOrientation:animated:

-(void)setStatusBarOrientation:(UIInterfaceOrientation)interfaceOrientation animated:(BOOL)animated 解説 stasusBarOrientationプロパティの値を変更する、ステータスバーを回転するときにこのメソッドを呼ぶ。animatedにYESをセットするとアニメーシ…

setStatusBarHidden:animated:

オプションでアニメーショントランジション付きでステータスバーを表示・非表示します。 -(void)setStatusBarHidden:(BOOL)hidden animated:(BOOL)animated 解説 オプションでアニメーショントランジション付きでステータスバーを表示・非表示します。ナビゲ…

sendEvent:

アプリケーションでレスポンダオブジェクトに適したイベントを送信します。 -(void)sendEvent:(UIEvent *)event 解説 アプリケーションでレスポンダオブジェクトに適したイベントを送信します。サブクラスは特別な送出や入力されるイベントを受け取るために…

sendAction:to:from:forEvent:

INDEX>UIApplication> 指定されたターゲットにアクションメッセージを送信します -(BOOL)sendAction:(SEL)action to:(id)target from:(id)sender forEvent:(UIEvent *)event 解説 指定されたターゲットにアクションメッセージを送信します。 返り値 ( BOOL )…

registerForRemoteNotificationTypes:

レシーバーにアップルプッシュサービスを通して指定されたタイプの通知を登録します -(void)registerForRemoteNotificationTypes:(UIRemoteNotificationType)types 解説 レシーバーにアップルプッシュサービスを通して指定されたタイプの通知を登録します 返…

openURL:

指定したURLを開きます。 -(BOOL)openURL:(NSURL *)url 解説 指定したURLを開きます。 返り値 ( BOOL ) 開くことができたらYESを返します。そうでなければNOを返します。 引数 ( NSURL * )url URL。UIKitはhttp:,https:,tel:,mailto:,sms:をサポートします。…

isIgnoringInteractionEvents

レシーバーはスクリーンでタッチ関連のイベントを無視するかどうかを返します 解説 レシーバーはスクリーンでタッチ関連のイベントを無視するかどうかを返します。 返り値 ( BOOL ) レシーバーがタッチイベントを無視するならYESを、そうでなければNOを返し…

endIgnoringInteractionEvents

タッチ関連のイベントのハンドリングを再開するようにレシーバーに伝えます 解説 タッチ関連のイベントのハンドリングを再開するようにレシーバーに伝えます。 このメソッドを呼び出すときは通常beginIgnoringInteractionEventsメソッドを呼び出しアニメーシ…

enabledRemoteNotificationTypes

解説 返り値 ( UIRemoteNotificationType ) 引数 フレームワーク UIKit クラス UIApplication Instance Methods 使用可能 iPhone3.0 参照 例文

-canOpenURL:

与えられたURLリソースがアプリケーションで開くことができるかを返します。 - (BOOL)canOpenURL:(NSURL *)url 解説 与えられたURLリソースがアプリケーションで開くことができるかを返します。【精米】北海道産 白米 ななつぼし 5kg? 平成25年産出版社/メー…

beginIgnoringInteractionEvents

レシーバーにタッチに関連したイベントをサスペンドするように伝えます。 - (void)beginIgnoringInteractionEvents 解説 レシーバーにタッチに関連したイベントをサスペンドするように伝えます。通常あなたはアニメーションやトランジションを開始する時にこ…

sharedApplication

シングルトンアプリケーションインスタンスを返します。 + (UIApplication *)sharedApplication 解説 返り値 UIApplication * UIApplicationMain関数で作られたアプリケーションのインスタンス 引数 フレームワーク UIKit クラス UIApplication クラスメソッ…

windows

アプリケーションの表示可能なウインドウ(読み出しのみ) @property(nonatomic, readonly) NSArray *windows 解説 アプリケーションの表示可能なウインドウ(読み出しのみ)このプロパティはアプリケーションの表示可能なウインドウの配列を保持します。 ウ…

statusBarStyle

ステータスバーの現在のスタイル @property(nonatomic) UIStatusBarStyle statusBarStyle 解説 ステータスバーの現在のスタイル プロパティの値はステータスのスタイルを指定する定数UIStatusBarStyle デフォルトのスタイルはUIStatusBarStyleDefault フレー…