菜鸟教程小白 发表于 2022-12-12 14:20:49

iphone - 在我的 iOS 应用中实现邮件


                                            <p><p>我目前有一个 iOS 应用程序,其中一个项目是从一组项目中随机选择的,并显示在屏幕上。我已经在应用程序中构建了“随机性”和显示功能,但现在我正在尝试对其进行设置,以便您可以从应用程序内当前屏幕上的数组中通过电子邮件发送项目。例如,您按下按钮,它会随机显示一个从 1 到 10 的数字。我希望用户能够通过电子邮件发送屏幕上随机显示的任何数字,并在电子邮件正文中预先填充屏幕上的数字。因此,用户得到数字“3”,点击电子邮件按钮,当电子邮件撰写出现时,“3”已经预先填充在正文中。</p>

<p>我有两个问题,首先是弄清楚如何在我当前的代码中实现电子邮件功能代码。我已经构建了一个测试应用程序,它有一个按钮可以触发电子邮件撰写,并用一些静态文本填充正文,所以我对代码的工作原理有了基本的了解,但我不知道如何将它与我已经编写的代码集成。</p>

<p>我的第二个问题是让邮件正文预填充屏幕上的随机数。</p>

<p>这里的第一个问题是我的 ViewController.h 的样子(我已经添加了 MessageUI 框架)</p>

<pre><code>#import &lt;UIKit/UIKit.h&gt;
#import &lt;MessageUI/MessageUI.h&gt;

@interface ViewController : UIViewController {
NSArray *testArray;
}
- (IBAction)buttonGo:(UIButton *)sender;
@property (strong, nonatomic) IBOutlet UILabel *testLabel;
@property (strong, nonatomic) NSArray *testArray;

- (void) makePrediction;

@end
</code></pre>

<p>我的 ViewController.m 看起来像</p>

<pre><code>#import &#34;ViewController.h&#34;
#import &lt;MessageUI/MessageUI.h&gt;

@interface ViewController ()

@end

@implementation ViewController
@synthesize testArray;
@synthesize testLabel;

- (void)viewDidLoad
{
    ;

    self.testArray = [ initWithObjects:@&#34;number one&#34;,@&#34;number `two&#34;,@&#39;numberthree&#34;, nil];`

    - (void)didReceiveMemoryWarning
{
    ;
    // Dispose of any resources that can be recreated.
}

- (IBAction)buttonGo:(id)sender {
    NSUInteger index = arc4random_uniform(self.testArray.count);

    self.testLabel.text = ;
}

- (void) makePrediction {
    NSUInteger index = arc4random_uniform(self.
testArray.count);

    self.testLabel.text = ;
}


- (BOOL) canBecomeFirstResponder {
    return YES;
}


- (void) motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event {
    self.testLabel.text = @&#34;&#34;;
}

- (void) motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event {
    if ( motion == UIEventSubtypeMotionShake ){
      ;
    }

}

- (void) motionCancelled:(UIEventSubtype)motion withEvent:(UIEvent *)event {
    NSLog(@&#34;motion cancelled&#34;);
}


@end
</code></pre>

<p>应用程序运行良好,但我不确定在哪里实现我的电子邮件代码。我也不确定如何用我的数组中的随机选择填充我的电子邮件正文。我假设它与 MessageUI 的这一点有关</p>

<pre><code>NSString * sentFrom = @&#34;text in email body&#34;;
    ;
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这是你工作的地方,因为你会拿着文字</p>

<pre><code>- (IBAction)buttonGo:(id)sender
</code></pre>

<p>第二期
注意 isHTML 必须设置为 NO,以防您的文本不使用它。</p>

<pre><code>MFMailComposeViewController *mailController = [ init];

;                  
;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 在我的 iOS 应用中实现邮件,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/18680149/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/18680149/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 在我的 iOS 应用中实现邮件