在我的应用程序中,我想创建一个包含一个文本字段和一个按钮的对话框, 通过它我可以提示用户并获得用户输入的值。
我如何在Cocoa,Objective-C中执行此操作?
我没有找到任何预定义的方法。
答案 0 :(得分:41)
您可以调用NSAlert并将NSTextField作为它的附件视图“
- (NSString *)input: (NSString *)prompt defaultValue: (NSString *)defaultValue {
NSAlert *alert = [NSAlert alertWithMessageText: prompt
defaultButton:@"OK"
alternateButton:@"Cancel"
otherButton:nil
informativeTextWithFormat:@""];
NSTextField *input = [[NSTextField alloc] initWithFrame:NSMakeRect(0, 0, 200, 24)];
[input setStringValue:defaultValue];
[input autorelease];
[alert setAccessoryView:input];
NSInteger button = [alert runModal];
if (button == NSAlertDefaultReturn) {
[input validateEditing];
return [input stringValue];
} else if (button == NSAlertAlternateReturn) {
return nil;
} else {
NSAssert1(NO, @"Invalid input dialog button %d", button);
return nil;
}
}
答案 1 :(得分:16)
IN OS X 10.10:
NSAlert *alert = [[NSAlert alloc] init];
[alert setMessageText:@"Permission denied, sudo password?"];
[alert addButtonWithTitle:@"Ok"];
[alert addButtonWithTitle:@"Cancel"];
NSTextField *input = [[NSTextField alloc] initWithFrame:NSMakeRect(0, 0, 200, 24)];
[input setStringValue:@""];
[alert setAccessoryView:input];
NSInteger button = [alert runModal];
if (button == NSAlertFirstButtonReturn) {
password = [input stringValue];
} else if (button == NSAlertSecondButtonReturn) {
}
答案 2 :(得分:7)
我相信你要找的是一张纸。查看Sheet Programming Topics文档
我刚刚更新了Github Sample项目。您可以在工作表上的字段中输入文本,然后将其传递回主窗口。
此示例显示如何在nib中创建视图并使用自定义图表控制器类,该类使用块作为回调,而不必创建并传入选择器。
答案 3 :(得分:7)
Xcode 7.2.1和OS X 10.11中的Swift示例:
let a = NSAlert()
a.messageText = "Please enter a value"
a.addButtonWithTitle("Save")
a.addButtonWithTitle("Cancel")
let inputTextField = NSTextField(frame: NSRect(x: 0, y: 0, width: 300, height: 24))
inputTextField.placeholderString = "Enter string"
a.accessoryView = inputTextField
a.beginSheetModalForWindow(self.window!, completionHandler: { (modalResponse) -> Void in
if modalResponse == NSAlertFirstButtonReturn {
let enteredString = inputTextField.stringValue
print("Entered string = \"\(enteredString)\"")
}
})