很长一段时间没有写博客了,最近在学习iOS开发,看了不少的代码,自己用UIScrollView和UIButton实现了水平滚动的效果,有点类似于今日头条的主界面框架,效果如下: 代码如下: MyScrollView.h MyScrollView.m MySegementView.h MySegeme ...
分类:
移动开发 时间:
2016-06-29 12:56:56
阅读次数:
1184
1.UIButton的点击优化(防止用户吃饱了没事干猛点按钮) - (void)starButtonClickedBack:(id)sender { NSLog(@"我没有优化按钮点击"); //先将未到时间执行前的任务取消 [[self class] cancelPreviousPerformRe ...
分类:
移动开发 时间:
2016-06-27 11:54:07
阅读次数:
125
创建UIButton子类 直接上代码了 .h文件 .m文件 #import "GraphicBtn.h" @implementation GraphicBtn - (id)initWithFrame:(CGRect)frame { self = [super initWithFrame:frame] ...
分类:
移动开发 时间:
2016-06-24 12:16:55
阅读次数:
234
-(void)click:(UIButton *)btn { NSString *testStr = @"学>与全等"; NSStringEncoding encoding2 = NSUTF8StringEncoding; testStr = [testStr stringByReplacingOc ...
分类:
移动开发 时间:
2016-06-20 15:44:46
阅读次数:
406
UIButton正常情况下是图片在左,文字在右,调整一下位置变成图片在上,文字在下,这个比较常用 ...
分类:
移动开发 时间:
2016-06-16 06:46:03
阅读次数:
653
在自定义返回按钮的时候,侧滑手势返回往往默认失效了,怎么让侧滑有效呢 UIButton *btn =[UIButton buttonWithType:UIButtonTypeCustom]; [btn setTitle:@"返回" forState:UIControlStateNormal]; [b ...
分类:
其他好文 时间:
2016-06-15 10:55:04
阅读次数:
119
//根据button高度来设置字体大小 CGFloat dayLabelWidth = (viewWidth-10)/7-1; cancelButton = [[UIButton alloc] initWithFrame:CGRectMake(viewWidth/2, viewHeight-dayL ...
分类:
移动开发 时间:
2016-06-14 11:52:53
阅读次数:
241