如果父视图为ParentView包含一个Button,如果再ParentView上添加子视图ChildView,且ChildView盖住了 Button,那么Button就得到不响应了,为了让Button响应,可以设置ChildView的userInteractionEnabled = NO;最近被...
分类:
其他好文 时间:
2014-07-16 23:22:52
阅读次数:
196
曾经有人这么说过,在iphone里你看到的,摸到的,都是UIView,所以UIView在iphone开发里具有非常重要的作用。那么UIView我们到底知道多少呢。请看看下面的问题,如果这些你都知道,那么本文章的内容就请绕道,如果你还不太清楚,我想看了下面的内容,你就明白了。1。bounds和fram...
分类:
其他好文 时间:
2014-07-07 21:15:19
阅读次数:
305
我们在用键盘录入的时候,有可能会遮挡录入框,所以我们应调整UIView的位置,使其不被遮挡。我写了一个通用的方法可以解决这个问题:??1. [代码][C/C++]代码 - (void)moveView:(UITextField *)textField leaveView:(BOOL)leave...
分类:
其他好文 时间:
2014-07-07 19:08:30
阅读次数:
183
UIViewContentModetypedef enum {UIViewContentModeScaleToFill,UIViewContentModeScaleAspectFit,// contents scaled to fit with fixed aspect. remainder is ...
分类:
其他好文 时间:
2014-07-07 18:24:03
阅读次数:
151
1 @property(nonatomic) CGFloat alpha //设置视图的透明度 2 //透明度的设置从最小0.0到1.0 ,1.0为完全不透明, 3 //其中这个属性只影响当前视图,并不会影响其子视图 4 @property(nonatomic, getter=isOpaque) ....
分类:
其他好文 时间:
2014-07-07 18:13:01
阅读次数:
208
建一个类如,在Contans.swift中import UIKitlet kMAIN_SIZE = UIScreen.mainScreen().bounds在其他地方直接用比如在MyTabbarViewController.swift中var bgView = UIView(frame:CGRect...
分类:
其他好文 时间:
2014-07-01 00:06:49
阅读次数:
172
IOS中的动画有两大类1.UIView的视图动画2.Layer的动画 UIView的动画也是基于Layer的动画动画的代码格式都很固定1.UIView动画一般方式[UIView beginAnimations:@"ddd" context:nil];//设置动画[UIView commitAnima...
分类:
其他好文 时间:
2014-06-30 13:13:47
阅读次数:
184
1.在IOS中绑定类
@interface ClassName : ExtendedClassName那么在java中就应该是:
@NativeClass
public class GADBannerView extends UIView {
}
这里一般形式是:
@NativeClass
public class GADBannerView extends NSObject {
}...
分类:
其他好文 时间:
2014-06-30 06:06:58
阅读次数:
288
取消第一响应者————回收键盘UIImageView响应点击事件UIImageView响应点击事件给View添加点击事件 UIView *view = [[UIControl alloc]init]; view.backgroundColor = [UIColor redColor]; ...
分类:
其他好文 时间:
2014-06-27 18:33:45
阅读次数:
165
//利用CATransition来作模拟//模拟Push- (void)pushView:(UIView *)pushView inView:(UIView *)inView{ CATransition *animation = [CATransition animation]; ani...
分类:
其他好文 时间:
2014-06-27 14:41:15
阅读次数:
178