Skip to content
This repository has been archived by the owner on Nov 2, 2019. It is now read-only.

Commit

Permalink
Solve handler wrapping issue in UIViewController API in Sample App
Browse files Browse the repository at this point in the history
  • Loading branch information
mohshin-shah committed Nov 2, 2016
1 parent 374a35a commit c87acd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Samples/Catalog/Sources/AlertController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ extension UIAlertAction {
//Creating UIAlertAction instance
return UIAlertAction(title:title, style:actionStyle) { nativeAction in
if let handler = handler {
handler!(title)
handler(title)
}
}

Expand Down

0 comments on commit c87acd2

Please sign in to comment.