摘要: 1.定义一个字符串a, 截取a 的某一个部分,复制给b, b必须是int型 NSString *a = @"1.2.30"; int b= [[a substringWithRange:NSMakeRange(4,2)] intValue]; NSLog(@"a:%@ \n",a ); NSLog( 阅读全文
posted @ 2016-01-30 11:13 侯文超 阅读(797) 评论(0) 推荐(0) 编辑
摘要: layoutSubviews在以下情况下会被调用: 1、init初始化不会触发layoutSubviews 2、addSubview会触发layoutSubviews 3、设置view的Frame会触发layoutSubviews,当然前提是frame的值设置前后发生了变化 4、滚动一个UIScro 阅读全文
posted @ 2016-01-30 10:58 侯文超 阅读(274) 评论(0) 推荐(0) 编辑
摘要: static NetHelper *helper = nil; + (NetHelper *)shareNetHelper{ @synchronized(self) { if (!helper) { helper = [[NetHelper alloc] init]; } return helper 阅读全文
posted @ 2016-01-29 11:57 侯文超 阅读(135) 评论(0) 推荐(0) 编辑
摘要: UINavigationController继承于UIViewController(任何继承自UIViewController的类,都可以作为根控制器), 以栈的方式管理视图控制器. UINavigationController的contentView始终显示栈顶的view 入栈,出栈 pushVi 阅读全文
posted @ 2016-01-28 22:51 侯文超 阅读(142) 评论(0) 推荐(0) 编辑
摘要: //用持久化对象去存储一个字符串作为标识,如果找到标识用户不是第一次登陆,就加在主界面,如果找不到,说明用户是第一次登陆,加载引导界面. if (![[NSUserDefaults standardUserDefaults] boolForKey:@"ccc"]) { UserGuideViewCo 阅读全文
posted @ 2016-01-28 20:22 侯文超 阅读(236) 评论(0) 推荐(0) 编辑
摘要: UIImageView *imageV = [[UIImageView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)]; NSMutableArray *array = [NSMutableArray arrayWithCapacity:1] 阅读全文
posted @ 2016-01-25 19:48 侯文超 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 设置是否允许屏幕旋转 - shouldAutorotate{ return YES; } 设置可旋转的方向 - supportedInterfaceOrientations{ return UIInterfaceOrientationMaskAll; } iOS8之前的屏幕旋转的方法,之后已经被弃用 阅读全文
posted @ 2016-01-24 19:07 侯文超 阅读(175) 评论(0) 推荐(0) 编辑
摘要: UIPageControl用于显示滑动视图实际拥有的页数 UIPageControl *page = [[UIPageControl alloc] initWithFrame:CGRectMake(100, 100, 100, 30); page.background = [UIColor redC 阅读全文
posted @ 2016-01-02 20:28 侯文超 阅读(122) 评论(0) 推荐(0) 编辑
摘要: UIScrollView是所有滑动视图的基类 UIScrollView *scroll = [[UIScrollView alloc] initWithFrame:CGRectMake(100, 100, 200, 200)]; scroll.background = [UIColor redCol 阅读全文
posted @ 2016-01-02 20:09 侯文超 阅读(199) 评论(0) 推荐(0) 编辑
摘要: UISlider *slider = [[UISlider alloc] initWithFrame:CGRectMake:(100, 100, 200, 25); //创建一个滑竿对象 slider.backgroundColor = [UIColor redColor]; slider.mini 阅读全文
posted @ 2016-01-02 18:33 侯文超 阅读(792) 评论(0) 推荐(0) 编辑