- 博客(22)
- 问答 (1)
- 收藏
- 关注
原创 合成图片
-(UIImage*)convertViewToImage:(UIView*)v{// CGSize s = v.bounds.size; UIGraphicsBeginImageContextWithOptions(CGSizeMake(360,360), NO, [UIScreenmainScreen].scale);//
2016-06-27 16:14:34 562
原创 cell 上的剪贴板
长按cell 显示剪贴板选项,在cell上添加手势,把处理方法放在delegateVC 里面,如果VC本身有textView,不释放键盘#pragma mark - 剪贴板//剪贴板- (void)showCopyMenu:(id)cell { if (self.menuVisible) { return;
2016-05-24 09:50:16 360
原创 高德地图不响应点击事件
高德地图不响应点击事件解决:- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer { ret
2016-05-23 17:47:46 4042
原创 倒计时的问题
1.不拿手机当前时间来倒计时2.锁屏期间,计时器会停止,单靠服务器返回的剩余时间行不通这时候可以这样解决 取手机已开机的运行时间API 返回时: start Up time API返回剩余30秒当前: 当前的start up time ?(新的剩余时间)API 返回: self.iLeftTime
2016-05-23 17:35:49 572
原创 NSMutableAttributedString
1. 同一个label中字体不同 self.iPriceLabel.text =[NSStringstringWithFormat:@"¥%0.2f",iPrice.doubleValue]; NSMutableAttributedString *priceAttri = [[NSMutableAttributedStringallo
2016-05-23 17:30:34 459
原创 一图片持续360度旋转
CABasicAnimation* rotationAnimation; rotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"]; rotationAnimation.toValue = [NSNumbernumberWithFloat
2016-05-23 17:26:31 869
原创 洗牌效果的动画处理
翻转 showFront=!showFront; [UIViewtransitionWithView:selfduration:0.65f options:UIViewAnimationOptionTransitionFlipFromRightanimations:^{
2016-05-23 17:19:08 852
原创 cocoapods 的使用命令
只是用来记录一下cocoapods的使用命令,在已经安装好cocoapods的情况下touch podfileopen -e podfilepod installpod update
2016-05-23 17:07:42 276
原创 terminal 的一些指令
pwd:当前目录q:退出w:保存i:插入(写入文件)vi:创建新文件git init 创建一个新的git, 这样可以直接在sourcetree上创建本地已存在的gitESC :w 有:才能写
2016-05-23 17:04:07 1099
原创 UITextField 的clearButton
自定义clearButton的样式 UIButton *clearButton = [self.iTextFieldvalueForKey:@"_clearButton"]; 取出button,就可以修改相关属性
2016-05-23 17:00:35 1304
原创 两张图片合成
是在一个图片上加了两外一张图片合成为一张UIImage *image = [UIImage imageNamed:@"big"]; UIImage *waterMark = [UIImage imageNamed:@"small"];; UIGraphicsBeginImageContext(image.size);
2016-05-23 16:57:28 559
原创 TableCell 中label的旋转
当一个TableCell中有lable,想要旋转这个label,如果这个label 是从xib中加载过来的, 最开始显示的时候,都是没有旋转的,只有当滑动,重新加载这个cell的时候,label才会旋转,解决办法:手动添加lable,而不是从xib中加,UILabel *label = [[UILabelalloc ] initWithFrame:CGRectMake
2016-05-23 16:47:54 609
原创 NavigationBar
当present 一个navigationController 的时候,如果说view整个上移解决办法: self.navigationController.navigationBarHidden =NO; self.edgesForExtendedLayout =UIRectEdgeNone;
2016-05-23 16:45:14 356
原创 NSPredicate 判断是否包含
用NSPredicate 判断是否包含时,如果是对象,如判断对象的id,不能用not (SELF in %@),应该用: not (SELF.id in %@), [array valueforkey:@“id”]; NSPredicate *DataPredicate = [NSPredicatepredicateWithFormat:@"SELF.i
2016-05-23 16:34:57 1350
原创 UIView 会显示超出frame的部分
有时候一个view 里面有多个view,有的子view Y坐标是在frame 之外的,但是视图仍旧显示,可能的原因是,父视图的clipSubViews 这个属性没有选中。
2016-05-23 16:20:30 2329
原创 NStimer
tableView 滑动的时候,timer会暂停解决:[[NSRunLoop currentRunLoop] addTimer: timer forMode:NSRunLoopCommonModes];
2016-05-23 16:15:54 340
原创 new 和alloc 的区别
是在别的地方看到这个知识,好久以前了,找不到出处了。new 和alloc 都分配了内存并完成了初始化,alloc允许其他初始化方法,new 只能用init, 并且alloc 会把相关的对象分配到相邻的内存区域内。
2016-05-23 16:09:38 624
原创 TextView 控制字数
1.textViewDidChange的时候,取出textView的string,判断长度大于长度用subStringToIndex 截取,但是在iOS7上会crash,此时的解决办法是判断textView的markTextRange == nil,满足nil,才可以截取string2.iOS 7 以上text会clips last line相关 -》 UITextInput
2016-05-23 15:03:42 335
原创 UISplitViewController使用记录
记录一下写一个ipad上第一次使用splitViewController的过程,1。使用storyBoard,将storyBoard中的View 删掉,拖入一个splitVC,将程序的入口指向split ,同时,将AppDelegate中的window的rootVC 设为splitVC2.新建两个VC,分别是master(LeftMenuTableViewController) 和
2016-05-23 14:04:17 5809 1
原创 iOS收到通知的相关内容
使用的是JPUSH,收到的通知 aps = { alert = { "action-loc-key" = "epbtn_1"; "loc-args" = ( "\U718a\U4e8c" );
2016-05-23 13:52:52 424
空空如也
Mac上的白盒测试工具,在线测试网站
2019-09-29
TA创建的收藏夹 TA关注的收藏夹
TA关注的人