macOS/iOS API解説

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

目次

contextWithCGContext:options:

NSDictionaryのオプションを使ってCore Imageコンテキストを作ります
+(CIContext)contextWithCGContext:(CGContextRef)ctx:
               options:(NSDictionary *)dict:

解説

NSDictionaryのオプションを使ってCore Imageコンテキストを作ります。

返り値

( CIContext )

なし

引数

( CGContextRef )ctx
( NSDictionary * )dict

クラス

CIContext

Class Methods

使用可能

10.4

参照

例文

CIContext*		ciContext = [CIContext contextWithCGContext:(CGContextRef)[[NSGraphicsContext currentContext] graphicsPort] options:nil];