Working on the first swift app, and stuck in "share extension". Trying to share a phone number from recent calls log to an app for background task.
Thought to do it in this way, once user enter profile of a number from recent call log:
Now want to get the phone number and the country code to do that task, current code is:
class ShareViewController: UIViewController {
override func viewDidLoad() {
// Want to get selected phone number only and print it on the console for testing
print("Test\n")
}
}
How to do that?
Thanks in advance