1. ホーム
  2. ios

[解決済み] Swift言語 NSClassFromString

2023-04-28 10:27:31

質問

どのようにすれば リフレクション をSwift言語で実現するには?

どのように私はクラスをインスタンス化することができます

[[NSClassFromString(@"Foo") alloc] init];

どのように解決するのですか?

より簡単な方法はこちらです。 https://stackoverflow.com/a/32265287/308315

Swift のクラスは名前空間を持つので、 "MyViewController" の代わりに "AppName.MyViewController" となることに注意してください。


XCode6-beta 6/7から非推奨。

XCode6-beta 3で開発したソリューションです。

Edwin Vermeerの回答のおかげで、私はこれを行うことによって、Obj-CクラスにSwiftクラスをインスタンス化するものを構築することができました。

// swift file
// extend the NSObject class
extension NSObject {
    // create a static method to get a swift class for a string name
    class func swiftClassFromString(className: String) -> AnyClass! {
        // get the project name
        if  var appName: String? = NSBundle.mainBundle().objectForInfoDictionaryKey("CFBundleName") as String? {
            // generate the full name of your class (take a look into your "YourProject-swift.h" file)
            let classStringName = "_TtC\(appName!.utf16count)\(appName)\(countElements(className))\(className)"
            // return the class!
            return NSClassFromString(classStringName)
        }
        return nil;
    }
}

// obj-c file
#import "YourProject-Swift.h"

- (void)aMethod {
    Class class = NSClassFromString(key);
    if (!class)
        class = [NSObject swiftClassFromString:(key)];
    // do something with the class
}

EDIT

純粋なobj-cでも可能です。

- (Class)swiftClassFromString:(NSString *)className {
    NSString *appName = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleName"];
    NSString *classStringName = [NSString stringWithFormat:@"_TtC%d%@%d%@", appName.length, appName, className.length, className];
    return NSClassFromString(classStringName);
}

これが誰かの助けになることを願っています。