我有一个api,我必须将它从Objective C转换为Swift。 我坚持使用某种类型的构造函数或初始化,但我并不知道。
.h文件是这样的:
+ (instancetype) newProductionInstance;
+ (instancetype) newDemoInstance;
.m文件是:
+ (instancetype) newProductionInstance
{
return [[self alloc] initWithBaseURLString:productionURL];
}
+ (instancetype) newDemoInstance
{
return [[self alloc] initWithBaseURLString:demoURL];
}
- (instancetype)initWithBaseURLString:(NSString *)urlString
{
if (self = [self init])
{
_apiURL = [NSURL URLWithString:urlString];
}
return self;
}
这是他们对我翻译的主文件的调用:
mobileApi = [MobileAPI newDemoInstance];
所以我想只将最后一行转换为Swift 2。
提前致谢。
答案 0 :(得分:2)
var mobileApi = MobileAPI.newDemoInstance()
或
let mobileApi = MobileAPI.newDemoInstance()
如果您不打算修改它。
答案 1 :(得分:1)
只是MobileAPI.newDemoInstance()
。
let mobileApi = MobileAPI.newDemoInstance()
注意:请勿忘记在MobileAPI.h
文件中导入Bridging-Header.h
。
答案 2 :(得分:1)
我希望这会有所帮助
class YourClass: NSObject {
//Class level constants
static let productionURL = "YourProductionURL"
static let demoURL = "YourDemoURL"
//Class level variable
var apiURL : String!
//Static factory methods
static func newProductionInstance() -> YourClass {
return YourClass(with : YourClass.productionURL)
}
static func newDemoInstance() -> YourClass {
return YourClass(with : YourClass.demoURL)
}
// Init method
convenience init(with baseURLString : String) {
self.init()
self.apiURL = baseURLString
//Calling
let yourObject : YourClass = YourClass.newDemoInstance()
}
}
答案 3 :(得分:0)
使objective-c中的实例类型在objective-c和Swift中有效的最佳选择,您应该使用“ default” 关键字。此关键字已在Apple的标准库中使用。例如,NSNotificationCenter.default或NSFileManager.default。要在.h文件中声明它,您应该编写
+(instancetype) default;
并在您的.m文件中
static YOUR_CLASS_NAME *instance = nil;
+(instancetype) default {
if instance == nil { instance = [[super allocWithZone:NULL] init];}
return instance;
}