How to import twitterkit into swift? I have tried :
"#import < TwitterKit/TWTRKit.h>"
But that doesn't allow function calls.
How to import twitterkit into swift? I have tried :
"#import < TwitterKit/TWTRKit.h>"
But that doesn't allow function calls.
TwitterKit can be imported with
import TwitterKit
I've tested this
import UIKit
import TwitterKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
}