无法为应用商店创建新的配置文件.显示提示消息"发生了未指定的错误.请刷新并重试"我刷新并尝试了很多,但同样的错误 
 
我是xcode的新手.我在对话框中创建了一个对话框和确定按钮.现在,我正在对话框上做一些操作.之后,我想点击"确定"按钮关闭对话框.为此,我喜欢
在.h文件中
@interface viewcontroller:NSViewController
@property (weak) IBOutlet NSButton *OkBtn;
@end
在.m文件中
"我不知道如何在.m文件中编写ok按钮的代码.我只想在单击OK按钮时关闭对话框.
I need to enumerate a zipped array to check index for each object from array. Below is my code please help me out.
for((index1, index2),(value1, value2)) in zip(array1, array2).enumerated() {
        // INDEX OF OBJECT
}