摘要: NSDate *date=[NSDate date];//格林尼治时间 NSLog(@"%@",date); NSCalendar *calendar=[NSCalendar currentCalendar];//本地化日历 NSDateComponents *compt1= ... 阅读全文
posted @ 2014-11-22 22:12 离子 阅读(579) 评论(0) 推荐(0) 编辑
摘要: //CGRectInset 将原来的矩形放大或者缩小,正表示缩小,-表示放大。CGRect rect= CGRectMake(20, 50, 100, 80); CGRect rect1=CGRectInset(rect, -10, 20); NSLog(@"%@",p(rect1));//输出结... 阅读全文
posted @ 2014-11-22 18:58 离子 阅读(1231) 评论(0) 推荐(0) 编辑
摘要: //添加被塞尔曲线 CGContextMoveToPoint(cgContext, 150, 100); //移动到某一个点 CGContextAddCurveToPoint(cgContext, 150, 100, 100, 100, 100, 150);//绘制被... 阅读全文
posted @ 2014-11-22 11:58 离子 阅读(686) 评论(0) 推荐(0) 编辑