0

我是Objective-C的新手。我想在警报视图中显示当前日期和时间。

- (IBAction)postButtonPressed:(UIButton *)sender  {

    NSString *formatString = [NSDateFormatter dateFormatFromTemplate:@"MMM d, yyyy h:mm" options:0 locale:[NSLocale currentLocale]];

    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    [dateFormatter setDateFormat:formatString];

    NSString *todayString = [dateFormatter stringFromDate:[NSDate date]];

    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Message Posted" message:@"Your Message is posted on: @todayString" delegate:nil cancelButtonTitle:nil otherButtonTitles:@"OK", nil];
    [alert show];
      }
4

3 回答 3

0

您的警报消息字符串需要重做。试试这个:

    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Message Posted" 
message:[NSString stringWithFormat:@"Your Message is posted on: %@", todayString] 
delegate:nil cancelButtonTitle:nil otherButtonTitles:@"OK", nil];
于 2013-02-22T05:47:17.317 回答
0

您可以连接NSString使用stringWithFormat:stringWithString:还有其他可用的附加功能,请参阅文档

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Message Posted" message:[NSString stringWithFormat:@"Your Message is posted on: %@",todayString] delegate:nil cancelButtonTitle:nil otherButtonTitles:@"OK", nil];
[alert show];
[alert release]; //don't forget to release UIAlertView object if you don't using ARC
于 2013-02-22T05:49:45.830 回答
0

尝试

NSString *str = [NSString stringWithFormat:@"Your Message is posted on: %@", todayString];
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Message Posted" message:str delegate:nil cancelButtonTitle:nil otherButtonTitles:@"OK", nil];
[alert show];
于 2013-02-22T05:56:51.890 回答