【发布时间】:2011-02-26 06:37:02
【问题描述】:
我从 iphone OS Ref Library 中找到了电子邮件编写器示例代码。这是一个代码-
代码:
NSArray *toRecipients = [NSArray arrayWithObject:@"first@example.com"];
NSArray *ccRecipients = [NSArray arrayWithObjects:@"second@example.com", @"third@example.com", nil];
NSArray *bccRecipients = [NSArray arrayWithObject:@"fourth@example.com"];
我的问题是如何接受用户的输入?这里所有的电子邮件地址都是在代码中预定义的。那么 to、CC、Bcc、subject 和 body 字段的 ID 是什么?
【问题讨论】:
标签: iphone objective-c