Swiftify-Corp / Swiftify

42 stars 24 forks source link

Minor UIAlertView #131

Open Ibrahimhass opened 4 years ago

Ibrahimhass commented 4 years ago

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")

callsSolve commented 3 years ago

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