在我的Objectivec代码中,我有:
@property (nonatomic, nullable) NSString* position;
迅速将其转换为String类型。我可以禁用该转换吗?我也想在swift中使用NSString类型
此刻我的快速代码如下:
(a.position as NSString?)?.intValue
答案 0 :(得分:1)
无法禁用该对话。但是您可以使用27
将$alphabetSize ** $stringSize
转换为Int(a.position ?? "")
。这是安全的,因为此初始化程序是可选的。