Created
June 3, 2020 02:34
-
-
Save cardoso/9f3ffaacb2254adc3cb5f170626a9c2a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
extension ConsultViewController { | |
func setupHandlers() { | |
setupCallButtonHandler() | |
} | |
func setupCallButtonHandler() { | |
navigationItem.rightBarButtonItem?.target = self | |
navigationItem.rightBarButtonItem?.action = #selector(callButtonPressed) | |
} | |
@objc func callButtonPressed() { | |
startCall() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment