Swiftify icon indicating copy to clipboard operation
Swiftify copied to clipboard

Minor UIAlertView

Open Ibrahimhass opened this issue 5 years ago • 1 comments

Original Objective-C code: UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"No Camera" message:kLocaleFeedbackCameraUnavailable delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil]; Converted Swift code: let alert = UIAlertView(title: "No Camera", message: kLocaleFeedbackCameraUnavailable, delegate: self, cancelButtonTitle: "OK", otherButtonTitles: "") Converted Swift code with the correct functionality: let alert = UIAlertView(title: "No Camera", message: kLocaleFeedbackCameraUnavailable, delegate: self, cancelButtonTitle: "OK")

Ibrahimhass avatar Dec 19 '19 16:12 Ibrahimhass

let alert = UIAlertView(title: "No Camera", message: kLocaleFeedbackCameraUnavailable, delegate: self, cancelButtonTitle: "OK")

callsSolve avatar Sep 14 '20 09:09 callsSolve