iphone开发--时间的获取与字符串的连接

      最近这些日子都在做一个日记本,其中涉及到数据的永久存储,以及一些控件的应用。
下面把iphone开发的时间的获取与字符串的连接总结如下,如有误,欢迎批评指正。

     1。   //add the background

text.frame=self.view.frame;

NSString *path=[[NSBundle mainBundle]pathForResource:@"beijing" ofType:@"png"];

UIImage *image=[UIImage imageWithContentsOfFile:path];

UIImageView *imageView=[[UIImageView alloc] initWithFrame:text.frame];

imageView.image=image;

[text addSubview:imageView];

[text sendSubviewToBack:imageView];

 


2。//add the time

NSDate *now = [NSDate date];

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];

dateFormatter.dateFormat = @"yyyy-MM-dd HH:mm";

[dateFormatter setTimeZone:[NSTimeZone systemTimeZone]];

//NSLog(@"The Current Time is %@",[dateFormatter stringFromDate:now]);


3.//字符串连接

 

NSString *date1=[dateFormatter stringFromDate:now];

NSString *date2=@"\r\n";

NSString *date=[date1 stringByAppendingString:date2];

NSString *weather=@"The Weather: ";

 

NSString *info=[date stringByAppendingString:weather];

text.text=info;

 

[dateFormatter release];

你可能感兴趣的:(iphone开发--时间的获取与字符串的连接)