macOS/iOS API解説

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

目次

UIAlertView

UIAlertViewクラス

INDEX>UIKit クラスの説明 継承 UIView : UIResponder : NSObject 準拠 NSCoding (UIView) NSObject (NSObject) フレームワーク /System/Library/Frameworks/UIKit.framework 使用可能 iPhone2.0以降 定義 UIAlertView.h 解説 概要 タスク アラートビューを…

UIAlertViewクラス

INDEX>UIKit クラスの説明 継承 UIView : UIResponder : NSObject 準拠 NSCoding (UIView) NSObject (NSObject) フレームワーク /System/Library/Frameworks/UIKit.framework 使用可能 iPhone2.0以降 定義 UIAlertView.h 解説 概要 タスク アラートビューを…

title

@property(nonatomic, copy) NSString *title 解説 返り値 引数 フレームワーク UIKit クラス UIAlert Instance Methods 使用可能 iPhone2.0 参照 例文

numberOfButtons

@property(nonatomic, readonly) NSInteger numberOfButtons 解説 フレームワーク UIKit クラス UIAlert Property 使用可能 iPhone2.0 参照 例文

message

@property(nonatomic, copy) NSString *message 解説 フレームワーク UIKit クラス UIAlert Property 使用可能 iPhone2.0 参照 例文

firstOtherButtonIndex

@property(nonatomic, readonly) NSInteger firstOtherButtonIndex 解説 フレームワーク UIKit クラス UIAlert Property 使用可能 iPhone2.0 参照 例文

delegate

@property(nonatomic, assign) id delegate 解説 返り値 引数 フレームワーク UIKit クラス UIAlert Property 使用可能 iPhone2.0 参照 例文

cancelButtonIndex

キャンセルボタンが何番目のボタンか @property(nonatomic) NSInteger cancelButtonIndex 解説 フレームワーク UIKit クラス UIAlert Property 使用可能 iPhone2.0 参照 例文

show

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

initWithTitle:message:delegate:cancelButtonTitle:otherButtonTitles:

指定したメッセージでアラートビューを初期化して返します。 INDEX>UIKit>UIAlertView -(id)initWithTitle:(NSString *)title message:(NSString *)message delegate:(id)delegate cancelButtonTitle:(NSString *)cancelButtonTitle otherButtonTitles:(NSSt…

dismissWithClickedButtonIndex:animated:

プログラムからアラート表示を消します。 -(void)dismissWithClickedButtonIndex:(NSInteger)buttonIndex animated:(BOOL)animated 解説 返り値 ( void ) 引数 ( NSInteger )buttonIndex ( BOOL )animated フレームワーク UIKit クラス UIAlert Instance Met…

buttonTitleAtIndex:

-(NSString *)buttonTitleAtIndex:(NSInteger)buttonIndex 解説 返り値 ( NSString * ) 引数 ( NSInteger )buttonIndex フレームワーク UIKit クラス UIAlert Instance Methods 使用可能 iPhone2.0 参照 例文

addButtonWithTitle:

-(NSInteger)addButtonWithTitle:(NSString *)title 解説 返り値 ( NSInteger ) 引数 ( NSString * )title フレームワーク UIKit クラス UIAlert Instance Methods 使用可能 iPhone2.0 参照 例文

visible

アラートビューが表示されているか @property(nonatomic, readonly, getter=isVisible) BOOL visible 解説 フレームワーク UIKit クラス UIAlert Instance Methods 使用可能 iPhone2.0 参照 例文

title

@property(nonatomic, copy) NSString *title 解説 フレームワーク UIKit クラス UIAlert Instance Methods 使用可能 iPhone2.0 参照 例文