我正在尝试在 swift 项目中采用用objective-c 编写的SDK。初始化SDK的objective-c方式如下:
@implementation ViewController
nokeSDK *nokelock;
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
//INITIALIZE NOKE SDK
nokelock = [[nokeSDK alloc] init];
nokelock->cmd = [[nokecommand alloc] init];
我不相信 swift 中有与箭头运算符等效的东西,所以仍然可以初始化吗?我似乎找不到有关他特定主题的任何信息。