上一页 1 ··· 49 50 51 52 53 54 55 56 57 ··· 77 下一页
摘要: UIColor,CGColor,CIColor的区别和联系layer.shadowColor = [UIColor redColor].CGColor;这个是今天用到的。顺便总结一下。1、UIColor的两个属性CGColor,CIColor UIColor的CGColor总是有效的,不管它是通过... 阅读全文
posted @ 2014-11-18 14:46 小毛驴 阅读(8514) 评论(0) 推荐(0) 编辑
摘要: Target-action:目标-动作模式,它贯穿于iOS开发始终。但是对于初学者来说,还是被这种模式搞得一头雾水。其实Target-action模式很简单,就是当某个事件发生时,调用那个对象中的那个方法。如:按下按钮时,调用Controller里边的click方法。“那个对象”就是Target,“... 阅读全文
posted @ 2014-11-17 23:26 小毛驴 阅读(1235) 评论(0) 推荐(0) 编辑
摘要: (void) setSubView:(UIView *)masterView subCCGRect:(CGRect)subCCGRect imageName:(NSString *)imageName indexVaule :(NSInteger) indexVaule { UIImageV... 阅读全文
posted @ 2014-11-16 23:20 小毛驴 阅读(274) 评论(0) 推荐(0) 编辑
摘要: //翻页效果动画 左边 [UIView beginAnimations:@"animation" context:nil]; [UIView setAnimationDuration:1.0f]; [UIView setAnimationTransition:UIViewAnima... 阅读全文
posted @ 2014-11-15 22:23 小毛驴 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 这个题目是临时想出来的。在 xcode 开发时,发现手势使用时,有时候没反应,但是原始的例子确实没有问题。经过查找,发现userInteractionEnabled。 没有设置为 YES,默认值是 NO。没有设置过的话,就不能相应交互事件,如点击啊,拖动啊。就跟一个layer的作用差不多。如 UIi... 阅读全文
posted @ 2014-11-13 17:58 小毛驴 阅读(166) 评论(0) 推荐(0) 编辑
摘要: - (void)viewDidLoad { // 单击的 Recognizer UITapGestureRecognizer* singleRecognizer; singleRecognizer = [[UITapGestureRecognizer alloc] initWith... 阅读全文
posted @ 2014-11-10 16:09 小毛驴 阅读(116) 评论(0) 推荐(0) 编辑
摘要: http://www.lanrenios.com/ios/project/2013/0729/1433.htmlhttp://www.cnblogs.com/xiaobaizhu/archive/2013/05/26/3100351.htmlhttps://developer.apple.com/l... 阅读全文
posted @ 2014-11-07 14:54 小毛驴 阅读(131) 评论(0) 推荐(0) 编辑
摘要: FeedbackSituationResponse SearchFeedbackSituation(FeedbackSituationRequest request)1。输入参数使用request做后缀。2。输出参数使用response做后缀。 阅读全文
posted @ 2014-11-06 13:40 小毛驴 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 看了很多的block用法,还是小糊涂。最后还是自己尝试吧。#import "FirstViewController.h"@interface FirstViewController ()@property (weak, nonatomic) IBOutlet UILabel *kkk;@proper... 阅读全文
posted @ 2014-11-02 22:45 小毛驴 阅读(379) 评论(0) 推荐(0) 编辑
摘要: https://www.coursera.org/course/datasci 阅读全文
posted @ 2014-10-27 18:06 小毛驴 阅读(132) 评论(0) 推荐(0) 编辑
上一页 1 ··· 49 50 51 52 53 54 55 56 57 ··· 77 下一页