上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页
  2018年1月18日
摘要: + (CGFloat)cellHeightWithMsg:(NSString *)msg { UILabel *label = [[UILabel alloc] init]; label.text = msg; label.font = [UIFont systemFontOfSize:16]; label.numberOfLines = 0; CGSiz... 阅读全文
posted @ 2018-01-18 14:45 麦芽呀~ 阅读(2705) 评论(0) 推荐(0) 编辑
摘要: 1.创建一个textField,字数限制20,去掉收尾空格 遇到的问题: iOS9以下,中文输入的情况下,点击联想字输入是不会回调 在iOS11上如果不设置textField的边框,它的显示会有问题,暂时未找到问题产生的原因,先这样处理吧 2.实现协议 //iOS9以下,中文输入的情况下,点击联想字 阅读全文
posted @ 2018-01-18 11:11 麦芽呀~ 阅读(1273) 评论(0) 推荐(0) 编辑
摘要: 1.白条产生的原因: iOS 7 viewcontroller新增属性automaticallyAdjustsScrollViewInsets,即是否根据按所在界面的navigationbar与tabbar的高度,自动调整scrollview的 inset 2.在iOS11系统以下 举个例子吧,对于 阅读全文
posted @ 2018-01-18 10:43 麦芽呀~ 阅读(1248) 评论(0) 推荐(0) 编辑
摘要: 1.基本属性 2.一些基础宏 阅读全文
posted @ 2018-01-18 09:29 麦芽呀~ 阅读(2685) 评论(0) 推荐(0) 编辑
  2017年12月23日
摘要: 1.导入第三方库 2.使用 阅读全文
posted @ 2017-12-23 21:41 麦芽呀~ 阅读(1439) 评论(0) 推荐(0) 编辑
摘要: BYXCMenuItem.h BYXCMenuItem.m FNAgendaDetailTitleTableViewCell.h 阅读全文
posted @ 2017-12-23 21:37 麦芽呀~ 阅读(897) 评论(0) 推荐(0) 编辑
摘要: 1.presentViewController跳转的时候需要显示导航栏的时候: 阅读全文
posted @ 2017-12-23 15:19 麦芽呀~ 阅读(167) 评论(0) 推荐(0) 编辑
  2017年12月10日
摘要: _textView = [[UITextView alloc] initWithFrame:CGRectMake(13, 10, UIScreenWidth-26, 20)]; [self.contentView addSubview:_textView]; _textView.textColor = UIColorFromRGB(0x111111);... 阅读全文
posted @ 2017-12-10 15:57 麦芽呀~ 阅读(2036) 评论(0) 推荐(0) 编辑
  2017年11月29日
摘要: UITextField: [textField addTarget:self action:@selector(textFieldDidChange:) forControlEvents:UIControlEventEditingChanged]; - (void) textFieldDidChange:(id) sender { UITextField *_field = (U... 阅读全文
posted @ 2017-11-29 21:12 麦芽呀~ 阅读(7246) 评论(2) 推荐(0) 编辑
  2017年10月11日
摘要: FLAudioVisualizerView.h FLAudioVisualizerView.m ViewController.m 阅读全文
posted @ 2017-10-11 10:29 麦芽呀~ 阅读(309) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页