-1

こんにちは、私は iOS SDK を使用するのが初めてで、名前、住所、電子メールなどを含む基本的な連絡フォームを作成しようとしています...これまでに行ったことは次のとおりです。

'- (void)viewDidLoad
{
   [super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}

- (void)didReceiveMemoryWarning
{
  [super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (IBAction)emailButton:(id)sender {
MFMailComposeViewController *mailContoller = [[MFMailComposeViewController alloc]init];
[mailContoller setMailComposeDelegate:self];
NSString *email = @"******@gmail.com";
NSString *email1 = @"*******@hotmail.co.uk";
NSArray *emailArray = [[NSArray alloc]initWithObjects:email, email1, nil];
NSString *message = [[self myTextView]text];
[mailContoller setMessageBody:message isHTML:NO];
[mailContoller setToRecipients:emailArray];
[mailContoller setSubject:@"IT WORKS!"];
[self presentViewController:mailContoller animated:YES completion:nil];
}

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
  [[self myTextView] resignFirstResponder];
 }
-(void)mailComposeController:(MFMailComposeViewController *)controller                    didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error
 {
[self dismissViewControllerAnimated:YES completion:nil];
}
@end

私が抱えている問題は、電子メールで一緒に送信される複数のテキスト フィールドを作成する方法がわからないことです。ありがとう、どんな助けでも大歓迎です。

4

1 に答える 1

1

テキスト フィールドの文字列を連結するだけです。

NSString *message = [NSString stringWithFormat:@"%@\n%@\n%@",
     textField1.text, textField2.text, textField3.text];
于 2013-09-24T12:51:48.300 に答える