明確でない場合は、もう一度ご容赦ください。昨日 iOS dev を開始したばかりです。
したがって、特定の電子メールアドレスに情報を送信するアプリケーションがあります。ピッカービューを含め、5 つまたは 6 つの異なるカテゴリの一連の情報を入力しました。私がやりたいことは、ピッカービューで選択されているカテゴリに基づいて電子メールの受信者を変更できるようにすることです。
これまでのところ、私は持っていますが、selectedRowInComponent
うまくいかないようです。
- (IBAction)sendFinalItem:(UIButton *)sender {
NSLog(@"send button pressed");
if ([self.pickerView selectedRowInComponent:(0)])
{
MFMailComposeViewController *mailcontroller = [[MFMailComposeViewController alloc] init];
[mailcontroller setMailComposeDelegate:self];
NSString *email =@"k_scully@hotmail.co.uk";
NSArray *emailArray = [[NSArray alloc] initWithObjects:email, nil];
[mailcontroller setToRecipients:emailArray];
[mailcontroller setSubject:@"[Urgent]Potential Job, iPhone snapped"];
[self presentViewController:mailcontroller animated:YES completion:nil];
[mailcontroller setMessageBody:notesTextView.text isHTML:NO];
}