摘要: NSDate类用于保存时间值,同时提供了一些方法来处理一些基于秒级别时差(Time Interval)运算和日期之间的早晚比较等。1. 创建或初始化可用以下方法用于创建NSDate实例的类方法有+ (id)date;返回当前时间+ (id)dateWithTimeIntervalSinceNow:(NSTimeInterval)secs; 返回以当前时间为基准,然后过了secs秒的时间+ (id)dateWithTimeIntervalSinceReferenceDate:(NSTimeInterval)secs;返回以2001/01/01 GMT为基准,然后过了secs秒的时间+ (id)d 阅读全文
posted @ 2012-03-18 18:30 编程小翁 阅读(1737) 评论(1) 推荐(1) 编辑
摘要: 在xcode中手动添加frameWork。#import"MusicViewController.h"#import<AVFoundation/AVFoundation.h>#import<AudioToolbox/AudioToolbox.h>@implementationMusicViewController@synthesizestart;@synthesizepause;@synthesizerestart;@synthesizeBT1;@synthesizeplayer;-(IBAction)tostart:(id)sender{[play 阅读全文
posted @ 2012-03-18 15:10 编程小翁 阅读(5576) 评论(0) 推荐(0) 编辑
摘要: 在viewDidLoad里面添加: [self.view setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"11.jpg"]]];就是这么简单也可以另设一个UIImageView,把图片放上去,再把UIImageView 作为子视图添加上去:-(void)setBackgroundImage{NSLog(@"settingbgimage");UIImageView*customBackground=[[UIImageViewalloc]initWithImage 阅读全文
posted @ 2012-03-18 13:23 编程小翁 阅读(5752) 评论(0) 推荐(0) 编辑
摘要: 1、创建按钮的两种方法:·1、动态创建btnfont = [UIButton buttonWithType:UIButtonTypeRoundedRect];[btnfont setFrame:CGRectMake(100, 10, 120, 40)];[btnfont addTarget:self action:nil forControlEvents:UIControlEventTouchUpInside];[btnfont setTitle:@"字体" forState:UIControlStateNormal];btnfont.backgroundColo 阅读全文
posted @ 2012-03-18 13:17 编程小翁 阅读(658) 评论(0) 推荐(0) 编辑
摘要: iphone/ipad无键盘的设计是为屏幕争取更多的显示空间,大屏幕在观看图片、文字、视频等方面为用户带来了更好的用户体验。而触摸屏幕是iOS设备接受用户输入的主要方式,包括单击、双击、拨动以及多点触摸等,这些操作都会产生触摸事件。在Cocoa中,代表触摸对象的类是UITouch。当用户触摸屏幕后,就会产生相应的事件,所有相关的UITouch对象都被包装在事件中,被程序交由特定的对象来处理。UITouch对象直接包括触摸的详细信息。UITouch类中包含5个属性: window:触摸产生时所处的窗口。由于窗口可能发生变化,当前所在的窗口不一定是最开始的窗口。 view:触摸产生时所处的视图。由 阅读全文
posted @ 2012-03-18 10:50 编程小翁 阅读(383) 评论(0) 推荐(0) 编辑
我是来自厦门的Jilon. 翁,请关注我的微博:真实的weng,或关注微信:Jilon