日期选择器格式问题

发布于 2024-11-25 05:55:31 字数 915 浏览 0 评论 0原文

我如何解决我得到 2011-07-21 15:55:01 +0000 的问题,但计时已关闭 4 小时,如何删除 +0000?我希望格式为例如。 2011 年 6 月 12 日星期五 下午 1:30

-(IBAction)addButton:(id)sender
{
    NSDate *choice = [datepick date];
    NSString *words = [[NSString alloc]initWithFormat:@"%@", choice];
    UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Date Chosen
                                             message:words 
                                             delegate:nil   
                                             cancelButtonTitle:@"OK"
                                             otherButtonTitles:nil];

    [alert show];
    [alert release];
    [words release];

    label.text = words;
    textfield.text = words;
}

- (void)viewDidLoad 
{
    NSDate *now = [[NSDate alloc] init];
    [datepick setDate:now animated:YES];
    [now release];
    datepick.minimumDate = [NSDate date];
    [super viewDidLoad];
}

How do i solve the problem where i got 2011-07-21 15:55:01 +0000 , but the timing is off by 4 hr, how do i remove the +0000? And I want the format to be Eg. Friday 12 June 2011 1:30 PM

-(IBAction)addButton:(id)sender
{
    NSDate *choice = [datepick date];
    NSString *words = [[NSString alloc]initWithFormat:@"%@", choice];
    UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Date Chosen
                                             message:words 
                                             delegate:nil   
                                             cancelButtonTitle:@"OK"
                                             otherButtonTitles:nil];

    [alert show];
    [alert release];
    [words release];

    label.text = words;
    textfield.text = words;
}

- (void)viewDidLoad 
{
    NSDate *now = [[NSDate alloc] init];
    [datepick setDate:now animated:YES];
    [now release];
    datepick.minimumDate = [NSDate date];
    [super viewDidLoad];
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

国际总奸 2024-12-02 05:55:31
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"EEEE dd MMMM yyyy h:mm a"];
NSString *words = [formatter stringFromDate:choise];

此处日期格式化程序指南。

NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"EEEE dd MMMM yyyy h:mm a"];
NSString *words = [formatter stringFromDate:choise];

Here date formatter guide.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文