菜鸟教程小白 发表于 2022-12-12 10:57:01

ios - 如何重用 NSString 方法?


                                            <p><p>我正在编写一个接受字符串并返回字符串的方法。我正在尝试以另一种方法使用它。</p>

<pre><code>- (NSString*) formatDate:(NSString*) showStartDateTime
{
    NSTimeZone *tz = ;
    NSDateFormatter *dateFormatter = [ init];
    ;
    ;
    NSDate*dattt=;
    ;
    NSString*tempo2= ;
    return tempo2;

}
</code></pre>

<p>这就是我使用它的方式。 是正确的使用方式吗?</p>

<pre><code>NSString *hellostring=;
NSLog(@&#34;%@&#34;,hellostring);
</code></pre>

<p>我知道它不起作用。任何建议表示赞赏。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我编写了一个命令行应用程序但无法运行它,因为 <code>dateFromString:</code> 已经导致 nil,直到我添加 <code>dateFormatter.locale = [ initWithLocaleIdentifier:@ "en_US_POSIX"];</code></p>

<pre><code>- (NSString*) formatDate:(NSString*) showStartDateTime
{
    NSTimeZone *tz = ;
    NSDateFormatter *dateFormatter = [ init];
    ;

    dateFormatter.locale = [ initWithLocaleIdentifier:@&#34;en_US_POSIX&#34;];
    ;
    NSDate*dattt=;
    ;
    NSString*tempo2= ;
    return tempo2;

}
</code></pre>

<p>现在它返回 <code>2014-08-08</code></p>

<p>见 <a href="https://developer.apple.com/library/ios/qa/qa1480/_index.html" rel="noreferrer noopener nofollow">Technical Q&amp;A QA1480: NSDateFormatter and Internet Dates</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何重用 NSString 方法?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/24946656/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/24946656/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何重用 NSString 方法?