macOS/iOS API解説

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

目次

0-06-08から1日間の記事一覧

resizeWithOldSuperlayerSize:

** -(void)resizeWithOldSuperlayerSize:(CGSize)size: 解説 サブビューが変更されてその矩形サイズが変わったことをレシーバーに知らせる 返り値 ( void ) 引数 ( CGSize )size フレームワーク CoreAnimation クラス LKLayer Instance Methods 使用可能 10.…

resizeSublayersWithOldSize:

** -(void)resizeSublayersWithOldSize:(CGSize)size : 解説 レシーバーの矩形サイズが変わったレシーバーのサブレイヤーを知らせる 返り値 ( void ) 引数 ( CGSize )size フレームワーク CoreAnimation クラス LKLayer Instance Methods 使用可能 10.5 参照…

replaceSublayer:with:

** -(void)replaceSublayer:(LKLayer *)oldLayer: with:(LKLayer *)newLayer: 解説 指定した新しいレイヤーとレシーバーのサブレイヤー配列のレイヤーを置き換えます。 返り値 ( void ) 引数 ( LKLayer * )oldLayer ( LKLayer * )newLayer フレームワーク Co…

renderInContext:

** -(void)renderInContext:(CGContextRef)ctx: 解説 レシーバーをレンダリングします。そしてそれを指定されたコンテキストのサブレイヤーにします。 返り値 ( void ) 引数 ( CGContextRef )ctx フレームワーク CoreAnimation クラス LKLayer Instance Meth…

removeFromSuperlayer

** 解説 レシーバーのサブレイヤーのマスクプロパティまたはサブレイヤーの配列からレイヤーを取り除きます。 返り値 ( void ) 引数 フレームワーク CoreAnimation クラス LKLayer Instance Methods 使用可能 10.5 参照 例文

removeAnimationsForKey:

** -(void)removeAnimationsForKey:(NSString *)key: 解説 キーを指定してレシーバーにアタッチされた注釈を取り除く 返り値 ( void ) 引数 ( NSString * )key フレームワーク CoreAnimation クラス LKLayer Instance Methods 使用可能 10.5 参照 例文

removeAllAnimations

** 解説 返り値 ( void ) 引数 フレームワーク CoreAnimation クラス LKLayer Instance Methods 使用可能 10.5 参照 例文

preferredFrameSize

** 解説 返り値 ( CGSize ) 引数 フレームワーク CoreAnimation クラス LKLayer Instance Methods 使用可能 10.5 参照 例文

layoutSublayers

** 解説 返り値 ( void ) 引数 フレームワーク CoreAnimation クラス LKLayer Instance Methods 使用可能 10.5 参照 例文

layoutIfNeeded

** 解説 返り値 ( void ) 引数 フレームワーク CoreAnimation クラス LKLayer Instance Methods 使用可能 10.5 参照 例文

insertSublayer:below:

** -(void)insertSublayer:(LKLayer *)aLayer: below:(LKLayer *)sublayer: 解説 返り値 ( void ) 引数 ( LKLayer * )aLayer ( LKLayer * )sublayer フレームワーク CoreAnimation クラス LKLayer Instance Methods 使用可能 10.5 参照 例文

insertSublayer:atIndex:

** -(void)insertSublayer:(LKLayer *)aLayer: atIndex:(unsigned)index : 解説 返り値 ( void ) 引数 ( LKLayer * )aLayer ( unsigned )index フレームワーク CoreAnimation クラス LKLayer Instance Methods 使用可能 10.5 参照 例文

insertSublayer:above:

** -(void)insertSublayer:(LKLayer *)aLayer: above:(LKLayer *)siblingLayer: 解説 返り値 ( void ) 引数 ( LKLayer * )aLayer ( LKLayer * )siblingLayer フレームワーク CoreAnimation クラス LKLayer Instance Methods 使用可能 10.5 参照 例文

hitTest:

** -(LKLayer *)hitTest:(CGPoint)thePoint: 解説 返り値 ( LKLayer * ) 引数 ( CGPoint )thePoint フレームワーク CoreAnimation クラス LKLayer Instance Methods 使用可能 10.5 参照 例文

drawInContext:

** -(void)drawInContext:(CGContextRef)ctx: 解説 返り値 ( void ) 引数 ( CGContextRef )ctx フレームワーク CoreAnimation クラス LKLayer Instance Methods 使用可能 10.5 参照 例文

display

** 解説 このレイヤーの接続をリロードします。 レシーバーの内容プロパティをアップデートするときにdrawInContext:メソッドを呼び出す 直接呼び出す必要はありません。サブクラスはCGImageRefに適した内容プロパティをセットするためにこのメソッドをオー…

convertTime:toLayer:

** -(CFTimeInterval)convertTime:(CFTimeInterval)timeInterval: toLayer:(LKLayer *)layer: 解説 レシーバーの時間空間から指定されたレイヤーの時間空間に時間間隔を変換します 返り値 ( CFTimeInterval ) 引数 ( CFTimeInterval )timeInterval ( LKLayer…

convertTime:fromLayer:

** -(CFTimeInterval)convertTime:(CFTimeInterval)timeInterval: fromLayer:(LKLayer *)layer : 解説 指定されたレイヤーの時間空間をレシーバーの時間空間に変換します。 返り値 ( CFTimeInterval ) レシーバーの時間空間へ変換された時間空間 引数 ( CFTi…

convertRect:toLayer:

** -(CGRect)convertRect:(CGRect)aRect: toLayer:(LKLayer *)layer: 解説 レシーバーの座標システムから指定されたレイヤーの座標システムに矩形を変換する 返り値 ( CGRect ) レイヤーの座標システムへ変換された矩形 引数 ( CGRect )aRect ( LKLayer * )l…

convertRect:fromLayer:

** -(CGRect)convertRect:(CGRect)aRect: fromLayer:(LKLayer *)layer: 解説 指定のレイヤーの座標システムからレシーバーの座標システムへ矩形を変換する 返り値 ( CGRect ) レシーバーの座標システムに変換された矩形 引数 ( CGRect )aRect ( LKLayer * )l…

convertPoint:toLayer:

** -(CGPoint)convertPoint:(CGPoint)aPoint: toLayer:(LKLayer *)layer: 解説 レシーバーの座標システムから指定したレイヤーの座標システムへと位置を変換します。 返り値 ( CGPoint ) レイヤーの座標システムでの位置 引数 ( CGPoint )aPoint ( LKLayer *…

convertPoint:fromLayer:

** -(CGPoint)convertPoint:(CGPoint)aPoint: fromLayer:(LKLayer *)layer : 解説 指定のレイヤーの座標システムからレシーバーの座標システムへ点を変換します。 返り値 ( CGPoint ) レシーバーの座標システムでの位置 引数 ( CGPoint )aPoint ( LKLayer * …

containsPoint:

** -(BOOL)containsPoint:(CGPoint)thePoint: 解説 指定した点がレシーバーに含まれるかを返します。 返り値 ( BOOL ) レイヤーの内容に点が含まれるならYESを返します。 引数 ( CGPoint )thePoint フレームワーク CoreAnimation クラス LKLayer Instance Me…

affineTransform

** 解説 アフィン変換の変換属性を得るメソッド 返り値 ( CGAffineTransform ) レシーバーの変換属性として最適のCGAffineTransformインスタンス 引数 フレームワーク CoreAnimation クラス LKLayer Instance Methods 使用可能 10.5 参照 例文

addSublayer:

** -(void)addSublayer:(LKLayer *)aLayer: 解説 レシーバーのサブレイヤーの配列へレイヤーを追加します。 返り値 ( void ) 引数 ( LKLayer * )aLayer フレームワーク CoreAnimation クラス LKLayer Instance Methods 使用可能 10.5 参照 例文

addConstraint:

** -(void)addConstraint:(LKConstraint *)aConstraint : 解説 レシーバーの制御オブジェクトの配列へ制御を追加します。 詳細はLKConstraintLayoutManagerクラスリファレンスを見てください。 返り値 ( void ) 引数 ( LKConstraint * )aConstraint フレーム…

addAnimation:forKey:

** -(void)addAnimation:(LKAnimation *)anim: forKey:(NSString *)key: 解説 特定のキーでレシーバーのレンダーツリーへアニメーションオブジェクトを追加します。 返り値 ( void ) 引数 ( LKAnimation * )anim ( NSString * )key フレームワーク CoreAnima…

actionForKeyPath:

** -(id<LKAction>)actionForKeyPath:(NSString *)aKey: 解説 特定のIDのアクションの実装オブジェクトを返します 返り値 ( id<LKAction> ) aKeyのアクションを提供するオブジェクトを返します。 オブジェクトはLKActionプロトコルを実装しなければならない 引数 ( NSString * )a</lkaction></lkaction>…

defaultActionForKey:

** +(id<LKAction>)defaultActionForKey:(NSString *)aKey: 解説 返り値 ( id<LKAction> ) 引数 ( NSString * )aKey フレームワーク CoreAnimation クラス LKLayer Class Methods 使用可能 10.5 参照 例文</lkaction></lkaction>

** 解説 @property CGFloat zPosition 返り値 引数 フレームワーク CoreAnimation クラス LKLayer Instance Methods 使用可能 10.5 参照