You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
is CFBundleName if nil, the method FXFormClassFromString crash App.
static Class FXFormClassFromString(NSString *className)
{
Class cls = NSClassFromString(className);
if (className && !cls)
{
//might be a Swift class; time for some hackery!
className = [@[[[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleName"],
className] componentsJoinedByString:@"."];
//try again
cls = NSClassFromString(className);
}
return cls;
}
The text was updated successfully, but these errors were encountered:
is CFBundleName if nil, the method FXFormClassFromString crash App.
static Class FXFormClassFromString(NSString *className)
{
Class cls = NSClassFromString(className);
if (className && !cls)
{
//might be a Swift class; time for some hackery!
className = [@[[[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleName"],
className] componentsJoinedByString:@"."];
//try again
cls = NSClassFromString(className);
}
return cls;
}
The text was updated successfully, but these errors were encountered: