1. <small id='pow7z'></small><noframes id='pow7z'>

      <bdo id='pow7z'></bdo><ul id='pow7z'></ul>
    <legend id='pow7z'><style id='pow7z'><dir id='pow7z'><q id='pow7z'></q></dir></style></legend>
  2. <tfoot id='pow7z'></tfoot>

      <i id='pow7z'><tr id='pow7z'><dt id='pow7z'><q id='pow7z'><span id='pow7z'><b id='pow7z'><form id='pow7z'><ins id='pow7z'></ins><ul id='pow7z'></ul><sub id='pow7z'></sub></form><legend id='pow7z'></legend><bdo id='pow7z'><pre id='pow7z'><center id='pow7z'></center></pre></bdo></b><th id='pow7z'></th></span></q></dt></tr></i><div id='pow7z'><tfoot id='pow7z'></tfoot><dl id='pow7z'><fieldset id='pow7z'></fieldset></dl></div>
    1. Objective-C 字符串(yyyy-mm-dd)到 NSDate

      时间:2023-05-30
      <tfoot id='uulZQ'></tfoot>

            <legend id='uulZQ'><style id='uulZQ'><dir id='uulZQ'><q id='uulZQ'></q></dir></style></legend>
            • <bdo id='uulZQ'></bdo><ul id='uulZQ'></ul>

                <small id='uulZQ'></small><noframes id='uulZQ'>

              1. <i id='uulZQ'><tr id='uulZQ'><dt id='uulZQ'><q id='uulZQ'><span id='uulZQ'><b id='uulZQ'><form id='uulZQ'><ins id='uulZQ'></ins><ul id='uulZQ'></ul><sub id='uulZQ'></sub></form><legend id='uulZQ'></legend><bdo id='uulZQ'><pre id='uulZQ'><center id='uulZQ'></center></pre></bdo></b><th id='uulZQ'></th></span></q></dt></tr></i><div id='uulZQ'><tfoot id='uulZQ'></tfoot><dl id='uulZQ'><fieldset id='uulZQ'></fieldset></dl></div>
                  <tbody id='uulZQ'></tbody>
              2. 本文介绍了Objective-C 字符串(yyyy-mm-dd)到 NSDate的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                限时送ChatGPT账号..

                我的应用程序是一个 JSON 代码,其中包含字符串类型的日期.(如2011-10-01").我想知道如何将其转换为 NSDate?它需要以不同的时间格式显示,例如2011 年 10 月 1 日".

                My App is a JSON code which involves a date in string type. (Such as "2011-10-01"). I would like to know how I could conver it into NSDate? It needs to be displayed in a different time format such as "1 October, 2011".

                例如.此代码不起作用:

                ex. this code doesn't work:

                   NSString *date1 = @"2010-11-12";
                    NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
                    [dateFormat setDateFormat:@"yyyy-MMMM-dd"];
                    NSDate *date2 = [dateFormat dateFromString:date1];
                    NSString *strdate = [dateFormat stringFromDate:date2];
                

                推荐答案

                正如 Tug 在 他关于这个主题的博文:

                Objective-C 和 iOS SDK 提供了一个类来帮助格式化日期(编组和解组),这个类是 NSDateFormatter.不令人惊讶的是,NSDateFormatter 使用 Unicode 日期格式模式.

                Objective-C and iOS SDK provide a class to help formatting date (marshaling and unmarshaling), this class is NSDateFormatter. No surprise, the NSDateFormatter uses the Unicode Date Format Patterns.

                NSDateFormatter *dateFormatter = [[NSDateFormatter alloc]init];
                [dateFormatter setDateFormat:@"yyyy-MM-dd"];
                NSDate *date = [dateFormatter dateFromString:publicationDate ];
                [dateFormatter release];
                

                在这种情况下,publicationDate 是一个 NSString.

                where publicationDate in this case is an NSString.

                这篇关于Objective-C 字符串(yyyy-mm-dd)到 NSDate的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:Obj-C:__block 变量 下一篇:向 NSFetchedResultsController 管理的 UITableView 添加额外

                相关文章

                最新文章

                <small id='LE3vc'></small><noframes id='LE3vc'>

                <i id='LE3vc'><tr id='LE3vc'><dt id='LE3vc'><q id='LE3vc'><span id='LE3vc'><b id='LE3vc'><form id='LE3vc'><ins id='LE3vc'></ins><ul id='LE3vc'></ul><sub id='LE3vc'></sub></form><legend id='LE3vc'></legend><bdo id='LE3vc'><pre id='LE3vc'><center id='LE3vc'></center></pre></bdo></b><th id='LE3vc'></th></span></q></dt></tr></i><div id='LE3vc'><tfoot id='LE3vc'></tfoot><dl id='LE3vc'><fieldset id='LE3vc'></fieldset></dl></div>
                  <bdo id='LE3vc'></bdo><ul id='LE3vc'></ul>
                  <legend id='LE3vc'><style id='LE3vc'><dir id='LE3vc'><q id='LE3vc'></q></dir></style></legend><tfoot id='LE3vc'></tfoot>