//重写该方法后可以让超出父视图范围的子视图响应事件 - (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event { UIView *view = [super hitTest:point withEvent:event]; if (v ...
分类:
其他好文 时间:
2016-06-25 15:03:02
阅读次数:
211
iOS开发UI篇—CAlayer层的属性 一、position和anchorPoint 1.简单介绍 CALayer有2个非常重要的属性:position和anchorPoint @property CGPoint position; 用来设置CALayer在父层中的位置 以父层的左上角为原点(0, ...
分类:
移动开发 时间:
2016-06-16 20:06:46
阅读次数:
202
import import “UIView+Size.h”
@implementation UIView (Size)
- (void)setSize:(CGSize)size;
{
CGPoint origin = [self frame].origin;[self setFrame:CGRectMake(origin.x, origin.y, size.width, size...
分类:
其他好文 时间:
2016-06-16 10:31:26
阅读次数:
165
在有全屏侧滑的情况下,页面上有个slider需要左右滑动的时候,经常在滑动slider的时候页面也跟着滑动 解决办法一:关闭当前页面的全屏侧滑,开启系统侧滑 self.fd_interactivePopDisabled = YES; //关闭全屏侧滑 self.navigationControlle ...
分类:
其他好文 时间:
2016-06-14 11:45:13
阅读次数:
223
- (void)clickLongPress:(UILongPressGestureRecognizer *)longPress { CGPoint point = [longPress locationInView:mapView]; CLLocationCoordinate2D coord = ...
分类:
移动开发 时间:
2016-06-13 01:09:33
阅读次数:
233
原文网址:http://blog.csdn.net/baidu_nod/article/details/32934565 先看下页面的效果图: 首先定义这个ball它有两个属性和两个方法: @property(nonatomic) CGPoint location; @property(nonato ...
分类:
移动开发 时间:
2016-06-02 22:05:46
阅读次数:
293
//****以下为解决第一次进入停诊公告编辑页面,textview不可滚动问题- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event{ NSString * strText = self.textViewRemark.text; C ...
分类:
其他好文 时间:
2016-05-18 10:26:08
阅读次数:
130
anchorPoint属性是CGPoint(x,y) ,x,y的取值是按比例取值,一般用0~1,默认是(0.5,0.5),表示图层的position在自身的位置,举个例子, 在红色view确定完大小位置后,如果修改layer的定位点也就是anchorPoint,会让红色view的中心点positio ...
分类:
其他好文 时间:
2016-05-17 07:28:02
阅读次数:
173
//ios常用坐标转换来处理一些下拉框队形的按钮的位置,我以最下面两个来进行一下个人的理解,不足之处多多见谅 - (CGPoint)convertPoint:(CGPoint)point toView:(nullable UIView *)view; - (CGPoint)convertPoint: ...
分类:
移动开发 时间:
2016-05-13 10:37:21
阅读次数:
145
-(void)drawLine:(CGPoint)fromPnttoPoint:(CGPoint)toPnt{floatxScale=theImageView.p_w_picpath.size.width/theImageView.frame.size.width;floatyScale=theImageView.p_w_picpath.size.height/theImageView.frame.size.height;UIGraphicsBeginImageContext(theImageView.p_w..
分类:
移动开发 时间:
2016-05-13 05:12:32
阅读次数:
239