Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Xcode 中使用 MFMailViewController 并且我有这一行设置收件人。
[mailComposer setToRecipients:emailAddresses];
我需要将收件人设置为 NSArray 中的某个索引,但我无法弄清楚如何执行此操作。
如果您仍然不明白我的意思,我需要电子邮件地址是一个人或另一个人,具体取决于用户输入的内容。
你需要做这样的事情:
if (useBobsEmail) { [mailComposer setToRecipients:@[@"bob@somewhere.com"]]; } else { [mailComposer setToRecipients:@[@"joe@somewhereelse.com]]; }
@[]如果您不知道,可以使用该符号代替[NSArray arrayWithObjects:].
@[]
[NSArray arrayWithObjects:]