func NSClassFromString (String) -> AnyClass?
func NSStringFromClass (AnyClass) -> String
func NSStringFromSelector (Selector) -> String
func NSStringFromProtocol (Protocol) -> String
func NSProtocolFromString (String) -> Protocol?
Availability 有効性
Technology
aSelectorName
A string of any length, with any characters, that represents the name of a selector. セレクタの名前を表している、任意の文字を持つ、任意の長さの文字列。
The selector named by a
. If a
is nil
, or cannot be converted to UTF-8 (this should be only due to insufficient memory), returns (SEL)0
.
a
によって名付けられるセレクタ。a
がnil
、またはUTF-8に変換できない(これはメモリ不足が原因だけであるべきです)ならば、(SEL)0
を返します。
To make a selector, NSSelector
passes a UTF-8 encoded character representation of a
to sel
and returns the value returned by that function. Note, therefore, that if the selector does not exist it is registered and the newly-registered selector is returned.
セレクタを作るために、NSSelector
はa
UTF-8エンコードされた文字表現をsel
に渡します、そしてこの関数によって返される値を返します。したがって、セレクタが存在しないならば、それが登録され、そして新しく登録されたセレクタが返されることに注意してください。
Recall that a colon (“:”) is part of a method name; set
is not the same as set
.
コロン(“:”)はメソッド名の一部部あることを思い出してください;set
はset
と同じではありません。
func NSClassFromString (String) -> AnyClass?
func NSStringFromClass (AnyClass) -> String
func NSStringFromSelector (Selector) -> String
func NSStringFromProtocol (Protocol) -> String
func NSProtocolFromString (String) -> Protocol?