菜鸟教程小白 发表于 2022-12-12 23:49:44

ios - 在 iOS 中格式化月份和年份


                                            <p><p>我只想在我的 iPad 应用程序中显示当前月份和年份,如“2012 年 11 月”,我目前正在将月份格式化为“MMMM”,将年份格式化为“yyyy”并将它们连接起来。这适用于大多数语言环境,但不适用于“中国”地区。</p>

<p>我当前的代码将“中国”地区的月份和年份显示为,</p>

<p> <img src="/image/rYGVX.png" alt="enter image description here"/> </p>

<p>但是,这是不对的。就像它显示在 iOS 日历应用程序中一样,</p>

<p> <img src="/image/ZklQ6.png" alt="enter image description here"/> </p>

<p>关于如何实现这一点的任何想法?</p>

<p>编辑 1:</p>

<pre><code>NSDate *date = ;

NSDateFormatter *dateFormatter = [ init];
dateFormatter.dateFormat=@&#34;MMMM&#34;;
NSString * monthString = [ capitalizedString];
dateFormatter.dateFormat=@&#34;yyyy&#34;;
NSString * yearString = [ capitalizedString];

lblMonthAndYear.text = ;
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我认为你的日期格式化程序根本没有使用语言环境,这里的关键是使用当前语言环境创建模板,而不仅仅是格式字符串,例如:</p>

<pre><code>NSString *dateFormat = [NSDateFormatter dateFormatFromTemplate:@&#34;MMMM d&#34;
                                                       options:0
                                                      locale:];
dateFormatter = [ init];
dateFormatter.dateFormat = dateFormat;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 iOS 中格式化月份和年份,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/13486013/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/13486013/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 iOS 中格式化月份和年份