0

Do we have UIAlert/Date picker kind of controls for cocoa mac desktop applications? (These controls are visually appealing)

sach
  • 1,069
  • 4
  • 15
  • 29

1 Answers1

3

The analog of UIAlertView is an NSAlert.

The analog of UIDatePicker is NSDatePicker.

Their visual styles are different, of course. They have existed for far longer than their UIKit counterparts. I am unaware of any third-party implementation of UIAlertView or UIDatePicker for Mac OS that replicates the iOS look.

Dave DeLong
  • 242,470
  • 58
  • 448
  • 498