func method_getName (Method) -> Selector
Returns the name of a method.
あるメソッドの名前を返します。
func method_getImplementation (Method) -> IMP
Returns the implementation of a method.
あるメソッドの実装を返します。
func method_getTypeEncoding (Method) -> UnsafePointer<CChar>?
Returns a string describing a method's parameter and return types.
あるメソッドのもつパラメータおよび戻り型を記述している文字列を返します。
func method_copyReturnType (Method) -> UnsafeMutablePointer<CChar>
Returns a string describing a method's return type.
あるメソッドのもつ戻り型を記述している文字列を返します。
func method_getReturnType (Method, UnsafeMutablePointer<CChar>, Int)
Returns by reference a string describing a method's return type.
あるメソッドのもつ戻り型を記述している文字列を参照によって返します。
func method_getNumberOfArguments (Method) -> UInt32
Returns the number of arguments accepted by a method.
あるメソッドによって受け入れられる引数の数を返します。
func method_getArgumentType (Method, UInt32, UnsafeMutablePointer<CChar>?, Int)
Returns by reference a string describing a single parameter type of a method.
あるメソッドのある単一のパラメータ型を記述している文字列を参照によって返します。
func method_getDescription (Method) -> UnsafeMutablePointer<objc_method_description>
Returns a method description structure for a specified method.
指定されたメソッドに対するメソッド記述構造体を返します。
func method_setImplementation (Method, IMP) -> IMP
Sets the implementation of a method.
あるメソッドの実装を設定します。
func method_exchangeImplementations (Method, Method)
Exchanges the implementations of two methods.
2つのメソッドの実装を交換します。