上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页
摘要: UITextView *textView = [[UITextView alloc]initWithFrame:CGRectMake(0, 100, 320, 200)]; textView.backgroundColor = [UIColor redColor]; textView.textAli... 阅读全文
posted @ 2014-11-24 16:37 銱ル╬鎯噹 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 1,这种方法,拨打完电话回不到原来的应用,会停留在通讯录里,而且是直接拨打,不弹出提示NSMutableString * str=[[NSMutableString alloc] initWithFormat:@"tel:%@",@"130xxxx6979"];[[UIApplication sha... 阅读全文
posted @ 2014-11-24 16:31 銱ル╬鎯噹 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 注册通知:即要在什么地方接受消息[[NSNotificationCenterdefaultCenter]addObserver:selfselector:@selector(mytest:)name:@" mytest"object:nil];参数介绍:addObserver: 观察者,即在什么地方... 阅读全文
posted @ 2014-11-24 16:13 銱ル╬鎯噹 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 一、项目文件结构示意图二、文件介绍1.products文件夹:主要用于mac电脑开发的可执行文件,ios开发用不到这个文件2.frameworks文件夹主要用来放依赖的框架3.test文件夹是用来做单元测试的4.常用的文件夹(项目名称文件夹)(1)XXXinfo.plist文件(在该项目中为 01-... 阅读全文
posted @ 2014-11-24 15:55 銱ル╬鎯噹 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 1、初始化+ (NSTimer *)timerWithTimeInterval:(NSTimeInterval)ti target:(id)aTarget selector:(SEL)aSelector userInfo:(id)userInfo repeats:(BOOL)yesOrNo;+ (N... 阅读全文
posted @ 2014-11-24 15:51 銱ル╬鎯噹 阅读(133) 评论(0) 推荐(0) 编辑
摘要: -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ UIActionSheet * sheet = [[UIActionSheet alloc] initWithTitle:@"确定要清空图片缓存?" delegate:... 阅读全文
posted @ 2014-11-24 15:47 銱ル╬鎯噹 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 1.AVFoundationBuild Phases => Link Binary With Libraies => + => AVFoundation.framework => addfirstviewcontroller.h#import #import @interface FirstView... 阅读全文
posted @ 2014-11-24 15:39 銱ル╬鎯噹 阅读(176) 评论(0) 推荐(0) 编辑
摘要: //点击root,也就是红色的任何处,页面会像翻书一样翻转。翻转到first,也就是蓝色的界面。当点击顶部root页面部分的时候,页面会重新翻到root,也就是红色的界面。 FirstViewController *firstView=[[FirstViewController alloc]in... 阅读全文
posted @ 2014-11-24 15:26 銱ル╬鎯噹 阅读(161) 评论(0) 推荐(0) 编辑
摘要: - (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view. //初始化背景图 [self initBackgroundView]; }#pragma -makr -func... 阅读全文
posted @ 2014-11-24 15:16 銱ル╬鎯噹 阅读(213) 评论(0) 推荐(0) 编辑
摘要: -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ UIAlertView *dialog = [[UIAlertView alloc] initWithTitle:@"请输入分组名称" message:@"\n" de... 阅读全文
posted @ 2014-11-24 15:11 銱ル╬鎯噹 阅读(119) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页