macOS/iOS API解説

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

目次

0-05-15から1日間の記事一覧

webView:willPerformDragSourceAction:fromPoint:withPasteboard:

** -(void)webView:(WebView *)sender: willPerformDragSourceAction:(WebDragSourceAction)action: fromPoint:(NSPoint)point: withPasteboard:(NSPasteboard *)pasteboard: 解説 調査中... 返り値 ( void ) なし 引数 ( WebView * )sender ( WebDragSource…

webView:willPerformDragDestinationAction:forDraggingInfo:

** -(void)webView:(WebView *)sender: willPerformDragDestinationAction:(WebDragDestinationAction)action: forDraggingInfo:(id <NSDraggingInfo>)draggingInfo: 解説 調査中... 返り値 ( void ) なし 引数 ( WebView * )sender ( WebDragDestinationAction )action ( id <NSDraggingInfo></nsdragginginfo></nsdragginginfo>…

webView:validateUserInterfaceItem:defaultValidation:

** -(BOOL)webView:(WebView *)sender: validateUserInterfaceItem:(id <NSValidatedUserInterfaceItem>)item: defaultValidation:(BOOL)defaultValidation: 解説 調査中... 返り値 ( BOOL ) YES/NO 引数 ( WebView * )sender ( id <NSValidatedUserInterfaceItem> )item ( BOOL )defaultValidation フレームワーク WebKit</nsvalidateduserinterfaceitem></nsvalidateduserinterfaceitem>…

webView:shouldPerformAction:fromSender:

** -(BOOL)webView:(WebView *)sender: shouldPerformAction:(SEL)action: fromSender:(id)fromObject: 解説 アクションが適用しようと、fromObjectによって起動されたならYESを返します。 そうでなければNOを返します。このメソッドはアクションメソッドが…

webView:dragSourceActionMaskForPoint:

** -(unsigned)webView:(WebView *)sender: dragSourceActionMaskForPoint:(NSPoint)point: 解説 調査中... 返り値 ( unsigned ) なし 引数 ( WebView * )sender ( NSPoint )point フレームワーク WebKit クラス WebUIDelegate Instance Methods 使用可能 10…

undoManagerForWebView:

webViewによって使用されるように、アンドゥマネージャを返します -(NSUndoManager *)undoManagerForWebView:(WebView *)webView: 解説 webViewによって使用されるように、アンドゥマネージャを返します。 返り値 ( NSUndoManager * ) なし 引数 ( WebView *…

webView:shouldInsertText:replacingDOMRange:givenAction:

もしユーザーがウエブビューにテキストを挿入しようとするならYESを返します -(BOOL)webView:(WebView *)webView: shouldInsertText:(NSString *)text: replacingDOMRange:(DOMRange *)range: givenAction:(WebViewInsertAction)action: 解説 もしユーザーが…

webView:shouldInsertNode:replacingDOMRange:givenAction:

ウエブビューにノードを挿入しようとする時にYESを返します -(BOOL)webView:(WebView *)webView: shouldInsertNode:(DOMNode *)node: replacingDOMRange:(DOMRange *)range: givenAction:(WebViewInsertAction)action: 解説 ウエブビューにノードを挿入しよ…

webView:shouldEndEditingInDOMRange:

ユーザーがウエブビューの編集を終えるならYESを返します -(BOOL)webView:(WebView *)webView: shouldEndEditingInDOMRange:(DOMRange *)range: 解説 もしユーザーがウエブビューの編集を終えるならYESを返します。 そうでなければNOを返します。 このメソッ…

webView:shouldDeleteDOMRange:

** -(BOOL)webView:(WebView *)webView: shouldDeleteDOMRange:(DOMRange *)range: 解説 調査中... 返り値 ( BOOL ) YES/NO 引数 ( WebView * )webView ( DOMRange * )range フレームワーク WebKit クラス WebEditingDelegate Instance Methods 使用可能 10.…

webView:shouldChangeTypingStyle:toStyle:

** -(BOOL)webView:(WebView *)webView: shouldChangeTypingStyle:(DOMCSSStyleDeclaration *)currentStyle: toStyle:(DOMCSSStyleDeclaration *)proposedStyle: 解説 調査中... 返り値 ( BOOL ) YES/NO 引数 ( WebView * )webView ( DOMCSSStyleDeclaration…

webView:shouldChangeSelectedDOMRange:toDOMRange:affinity:stillSelecting:

** -(BOOL)webView:(WebView *)webView: shouldChangeSelectedDOMRange:(DOMRange *)currentRange: toDOMRange:(DOMRange *)proposedRange: affinity:(NSSelectionAffinity)selectionAffinity: stillSelecting:(BOOL)flag: 解説 調査中... 返り値 ( BOOL ) Y…

webView:shouldBeginEditingInDOMRange:

** -(BOOL)webView:(WebView *)webView: shouldBeginEditingInDOMRange:(DOMRange *)range: 解説 調査中... 返り値 ( BOOL ) YES/NO 引数 ( WebView * )webView ( DOMRange * )range フレームワーク WebKit クラス WebEditingDelegate Instance Methods 使用…

webView:doCommandBySelector:

** -(BOOL)webView:(WebView *)webView: doCommandBySelector:(SEL)command: 解説 調査中... コマンドの実行 返り値 ( BOOL ) YES/NO 引数 ( WebView * )webView ( SEL )command フレームワーク WebKit クラス WebEditingDelegate Instance Methods 使用可能…

webView:shouldApplyStyle:toElementsInDOMRange:

** -(BOOL)webView:(WebView *)webView: shouldApplyStyle:(DOMCSSStyleDeclaration *)style: toElementsInDOMRange:(DOMRange *)range: 解説 調査中... 返り値 ( BOOL ) YES/NO 引数 ( WebView * )webView ( DOMCSSStyleDeclaration * )style ( DOMRange * …

webViewDidEndEditing:

** -(void)webViewDidEndEditing:(NSNotification *)notification: 解説 調査中... 返り値 ( void ) なし 引数 ( NSNotification * )notification フレームワーク WebKit クラス WebEditingDelegate Instance Methods 使用可能 10.3.9 参照 -webViewDidBegin…

webViewDidChangeTypingStyle:

** -(void)webViewDidChangeTypingStyle:(NSNotification *)notification: 解説 調査中... 返り値 ( void ) なし 引数 ( NSNotification * )notification フレームワーク WebKit クラス WebEditingDelegate Instance Methods 使用可能 10.3.9 参照 -webView:…

webViewDidChangeSelection:

** -(void)webViewDidChangeSelection:(NSNotification *)notification: 解説 調査中... 返り値 ( void ) なし 引数 ( NSNotification * )notification フレームワーク WebKit クラス WebEditingDelegate Instance Methods 使用可能 10.3.9 参照 -webView:sh…

webViewDidChange:

** -(void)webViewDidChange:(NSNotification *)notification: 解説 調査中... 返り値 ( void ) なし 引数 ( NSNotification * )notification フレームワーク WebKit クラス WebEditingDelegate Instance Methods 使用可能 10.3.9 参照 -webView:shouldDelet…

webViewDidBeginEditing:

** -(void)webViewDidBeginEditing:(NSNotification *)notification: 解説 調査中... 返り値 ( void ) なし 引数 ( NSNotification * )notification フレームワーク WebKit クラス WebEditingDelegate Instance Methods 使用可能 10.3.9 参照 -webViewDidEnd…

webPlugInStop

** 解説 調査中... 返り値 ( void ) なし 引数 フレームワーク WebKit クラス WebPlugIn Instance Methods 使用可能 10.3.9 参照 例文

webPlugInStart

** 解説 調査中... 返り値 ( void ) なし 引数 フレームワーク WebKit クラス WebPlugIn Instance Methods 使用可能 10.3.9 参照 例文

webPlugInSetIsSelected:

** -(void)webPlugInSetIsSelected:(BOOL)selected: 解説 調査中... 返り値 ( void ) なし 引数 ( BOOL )selected フレームワーク WebKit クラス WebPlugIn Instance Methods 使用可能 10.3.9 参照 例文

webPlugInInitialize

** 解説 調査中... 返り値 ( void ) なし 引数 フレームワーク WebKit クラス WebPlugIn Instance Methods 使用可能 10.3.9 参照 例文

webPlugInDestroy

** 解説 調査中... 返り値 ( void ) なし 引数 フレームワーク WebKit クラス WebPlugIn Instance Methods 使用可能 10.3.9 参照 例文

objectForWebScript

** 解説 調査中... 返り値 ( id ) オブジェクト() 引数 フレームワーク WebKit クラス WebPlugIn Instance Methods 使用可能 10.3.9 参照 例文

webPlugInContainerShowStatus:

** -(void)webPlugInContainerShowStatus:(NSString *)message: 解説 調査中... 返り値 ( void ) なし 引数 ( NSString * )message フレームワーク WebKit クラス WebPlugInContainer Instance Methods 使用可能 10.3.9 参照 例文

webPlugInContainerSelectionColor

** 解説 調査中... 返り値 ( NSColor * ) なし 引数 フレームワーク WebKit クラス WebPlugInContainer Instance Methods 使用可能 10.3.9 参照 例文

webPlugInContainerLoadRequest:inFrame:

** -(void)webPlugInContainerLoadRequest:(NSURLRequest *)request: inFrame:(NSString *)target: 解説 調査中... 返り値 ( void ) なし 引数 ( NSURLRequest * )request ( NSString * )target フレームワーク WebKit クラス WebPlugInContainer Instance M…

webFrame

プラグインを含むWebFrameを返します 解説 プラグインを含むWebFrameを返します。 返り値 ( WebFrame * ) なし 引数 フレームワーク WebKit クラス WebPlugInContainer Instance Methods 使用可能 10.3.9 参照 例文