SVKShareDialogController * shareDialog = [VKShareDialogController new];
shareDialog.text = @"Your share text here";
shareDialog.otherAttachmentsStrings = @[@"https://vk.com/dev/ios_sdk"];
[shareDialog presentIn:self];
//SWIFT
var shareDialog = VKShareDialogController()
shareDialog.text = "Your share text here"
shareDialog.otherAttachmentsStrings = ["https://vk.com/dev/ios_sdk"]
But I get some errors saying that type "viewcontroller" does not conform to protocol "VKSdkDelegate".
How can I fix this issue?