摘要: 调用一次计时器方法:myTimer=[NSTimerscheduledTimerWithTimeInterval:1.5target:selfselector:@selector(scrollTimer)userInfo:nilrepeats:NO];//不重复,只调用一次。timer运行一次就会自... 阅读全文
posted @ 2015-09-07 11:53 OIMMZC 阅读(224) 评论(0) 推荐(0) 编辑
摘要: #pragma mark UISearchBarDelegate 中可选实现的方法//执行searchBar代理方法(开始编辑)-(void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText{ //如果文... 阅读全文
posted @ 2015-09-07 09:33 OIMMZC 阅读(270) 评论(0) 推荐(0) 编辑
摘要: UINavigationController是IOS编程中的一个view controller的容器,通过栈管理viewControllers,每一次push操作都将在栈顶添加一个view controller,然后通过pop将该栈最顶端的controller移除。我们在工程中,通常会在contro... 阅读全文
posted @ 2015-09-07 09:17 OIMMZC 阅读(2767) 评论(0) 推荐(0) 编辑
摘要: //// VideoViewController.m// LIBAOZHENG0826//// Created by 张艳锋 on 15/8/30.// Copyright (c) 2015年 张艳锋. All rights reserved.//#import "VideoViewControll... 阅读全文
posted @ 2015-09-06 16:59 OIMMZC 阅读(278) 评论(0) 推荐(0) 编辑
摘要: static int z=0;-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ if (z==0) { self.view.backgroundColor=[UIColor blackColor]; _do... 阅读全文
posted @ 2015-09-06 16:45 OIMMZC 阅读(347) 评论(0) 推荐(0) 编辑
摘要: 今天把APP里常用小功能 例如发短信、发邮件、打电话。全部拿出来简单说说它们的实现思路。1.发短信实现打电话的功能,主要二种方法,下面我就分别说说它们的优缺点。1.1.发短信(1)——URL // 直接拨号,拨号完成后会停留在通话记录中1、方法:NSURL *url = [NSURL URLWith... 阅读全文
posted @ 2015-09-06 14:49 OIMMZC 阅读(252) 评论(0) 推荐(0) 编辑
摘要: #import "ViewController.h"#import @interface ViewController (){ AVPlayer *player; UISlider *slider; UILabel *label; UISlider *volumeSlider... 阅读全文
posted @ 2015-09-02 18:15 OIMMZC 阅读(336) 评论(0) 推荐(0) 编辑
摘要: - (void)setAnimationMIC{ NSMutableArray *arrayM = [NSMutableArray array]; //从路径取出图像 加载到数组 for (int i =0; i<4; i++) { UIImage *image = ... 阅读全文
posted @ 2015-09-01 18:25 OIMMZC 阅读(234) 评论(0) 推荐(0) 编辑
摘要: f1textview.allowsEditingTextAttributes=NO;////////////设置不可编辑不能用这个,得用下面的一个 textView.editable=NO;//设置可编辑属性 textView.selectable=NO;//设置可选择属性 阅读全文
posted @ 2015-09-01 14:52 OIMMZC 阅读(1942) 评论(0) 推荐(0) 编辑
摘要: 前面有一篇博文iOS学习之Tab Bar的使用和视图切换这是在AppDelegate里使用Tabbar,这样的程序打开就是TabbarView了,有时候我们需要给程序做一些帮助页面,或者登录页面,之后才跳转到tabbar View里,或者后面的页面才使用Tabbar的,那这样怎么实现呢?我们建立一个... 阅读全文
posted @ 2015-09-01 08:06 OIMMZC 阅读(739) 评论(0) 推荐(0) 编辑