0
比方說,我有:在iOS中動態投射?
ThisClass *castHere = [[ThisClass alloc] init];
但我想有效:
ThisClassChosenAtRuntime *castHere = [[ThisClassChosenAtRuntime alloc] init];
我敢肯定有一些更聰明的方式去了解這一點。但這是我追求的結果。我已經有castHere
遭受setValue forKey
陳述。但我想動態設置*castHere
。
你的問題不清楚。你想改變你的班的名字嗎? – Bejibun 2014-09-22 17:02:48
部分答案是使用'id castHere = ...',但其餘部分取決於您如何選擇要分配的類。 – 2014-09-22 17:04:35
我有幾個類,並且想要選擇哪一個應用於* castHere。每個類都有不同的屬性名稱。 – Bill3 2014-09-22 17:05:26