在iPhone上设置高分提交的名称输入框的示例?

时间:2008-12-15 20:59:37

标签: iphone objective-c

有没有人有一个设置文本字段的示例,用户可以在其中输入他们的姓名和/或电子邮件地址,将其在线提交到高分数据库?我想拥有 它类似于当您尝试从AppStore下载某些内容时弹出的表单,您可以在其中输入电子邮件和密码然后点击“确定”或“取消”。我可以在网站上处理所有提交代码和服务器端处理,但我只是花了很多时间才能正确设置文本字段和按钮。

提前致谢!

1 个答案:

答案 0 :(得分:1)

这将显示对话框,但我不确定如何使其响应:

[dialog setDelegate:self];
[dialog setTitle:@"Enter Name"];
[dialog addButtonWithTitle:@"Cancel"];
[dialog addButtonWithTitle:@"OK"];
UITextField * nameField = [[UITextField alloc] initWithFrame:CGRectMake(20.0, 45.0, 245.0, 25.0)];
[nameField setBackgroundColor:[UIColor whiteColor]];
[dialog addSubview:nameField];
CGAffineTransform moveUp = CGAffineTransformMakeTranslation(0.0, 100.0);
[dialog setTransform: moveUp];
[dialog show];