1,@class seatObject;typedef void (^touchButtom) (seatObject *);@interface seatObject : UIView{}@property (nonatomic ,strong)touchButtom block;@end2,@i...
分类:
其他好文 时间:
2014-08-05 15:18:59
阅读次数:
138
1.superview获得自己的父控件对象@property(nonatomic,readonly)UIView *superview2.subviews获得自己的所有子控件对象@property(nonatomic,readonly,copy)NSArray *subviews; int c...
分类:
其他好文 时间:
2014-08-05 00:21:18
阅读次数:
188
CATransition *animation = [CATransition animation]; animation.delegate = self; animation.duration = 0.5f; animation.timingFunction = UIVi...
分类:
其他好文 时间:
2014-08-04 13:25:57
阅读次数:
203
今天在做一个UIButton显示动画的时候,遇到一个问题,就是在移动的时候 ,需要相应它的点击时间(click)通过CAKeyframeAnimation 来移动UIButton的layer ,效果可以,但是就是无法点击。解决方法:将UIButton 的 userinterfaceenable 设置...
分类:
移动开发 时间:
2014-08-04 10:33:56
阅读次数:
181
对Core Animation来说,不管是显式动画还是隐式动画,对其设置frame都是立即设置的,比如说给一个UIView做移动动画,虽然看起来frame在持续改变,但其时它的frame已经是最终值了,这种情况下,哪怕这个UIView是UIButton的实例,其触发touch事件的范围还是最终frame的地方。...
分类:
移动开发 时间:
2014-08-03 15:18:55
阅读次数:
194
当您改变视图的边框矩形时,其内嵌子视图的位置和尺寸往往也需要改变,以适应原始视图的新尺寸。如果视图的autoresizesSubviews属性声明被设置为YES,则其子视图会根据autoresizingMask属性的值自动进行尺寸调整。简单配置一下视图的自动尺寸调整掩码常常就能使应用程序得到合适的行...
分类:
移动开发 时间:
2014-08-02 12:35:43
阅读次数:
215
///////////注flowView为UIView////////////添加滑动手势事件UIPanGestureRecognizer*gestureRecognizer=[[UIPanGestureRecognizeralloc]initWithTarget:flowViewaction:@s...
分类:
其他好文 时间:
2014-08-01 22:40:02
阅读次数:
261
//方法1---- (void)textFieldDidBeginEditing:(UITextField *)textField { if (iPhone5) { return; } else { [UIView beginAnimations:nil context:NUL...
分类:
移动开发 时间:
2014-08-01 13:11:11
阅读次数:
254
//设置一个viewview = [[UIView alloc] initWithFrame:CGRectMake(0, 38, 320, 30)];view.backgroundColor = [UIColor lightGrayColor];[self.view addSubview:view]...
分类:
移动开发 时间:
2014-08-01 12:51:11
阅读次数:
254
做网络ios应用难免要用到UIWebViewController,直接嵌入一个html页面。这种native+web的方式再很多app中都有应用,app store就是一个,另外如淘宝iPhone客户端的支付,口碑网iPhone客户端的团购内容,等等。这种实现方式,某种程度上牺牲了一些体验,但大大提...
分类:
Web程序 时间:
2014-08-01 04:35:41
阅读次数:
4210