macOS 开发 - NSAlert

文章目录

    • 关于 NSAlert
    • 代码实现
      • 简单弹出
      • Alert 类型
      • 贴着窗口 beginSheetModalForWindow
      • 添加按钮


关于 NSAlert

  • 官方文档:https://developer.apple.com/documentation/appkit/nsalert

代码实现

简单弹出


- (void)showAlert3{
   
     
    NSAlert *alert 

你可能感兴趣的:(Apple,开发,macos)