原文:http://blog.csdn.net/xingboss3/article/details/7890238UIView表示屏幕上的一块矩形区域,它在App中占有绝对重要的地位,因为IOS中几乎所有可视化控件都是UIView的子类。负责渲染区域的内容,并且响应该区域内发生的触摸事件UIView...
分类:
移动开发 时间:
2014-07-08 23:55:54
阅读次数:
440
for (id view in self.view.subviews) { if ([view isKindOfClass:[UITextField class]]) { UITextField* textField = (UITextField*)view; [t...
分类:
其他好文 时间:
2014-07-05 17:30:52
阅读次数:
161
- (void)removeDynamictItemView:(UIView *)view
{
NSMutableArray *itemesToRemove = [NSMutableArray
array];
for (UIView *subview
in view.subviews) {
if ([subview
isKindOfClass:[TB...
分类:
其他好文 时间:
2014-07-02 11:56:34
阅读次数:
174
@interface RootViewController (){ UIView *view1; UIView *view2; int flag;}@end@implementation RootViewController- (void)viewDidLoad{ [s...
分类:
其他好文 时间:
2014-07-02 10:25:29
阅读次数:
130
-(UIColor*)colorOfPoint:(CGPoint)point{unsignedcharpixel[4]={0};CGColorSpaceRefcolorSpace=CGColorSpaceCreateDeviceRGB();CGContextRefcontext=CGBitmapContextCreate(pixel,1,1,8,4,colorSpace,kCGImageAlphaPremultipliedLast);CGContextTranslateCTM(context,-point.x..
分类:
其他好文 时间:
2014-07-02 06:28:29
阅读次数:
194
The firstis workaround wich is iterating over all the labels in your UIView and change the labels font, check this question and the answers:How to set...
分类:
移动开发 时间:
2014-07-02 00:00:31
阅读次数:
223
// _closeContainerBar.alpha = 0.7; [_closeContainerBar setBackgroundColor:[[UIColor blackColor] colorWithAlphaComponent:0.7]];
分类:
其他好文 时间:
2014-07-01 12:37:36
阅读次数:
181
可以采用如下方法,写一个函数:
-(UIImage*) getOneImageButtonWithArrow{
//tmpView做附控件
UIView *tmpView = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 38.0f, 32.0f)];
tmpView.backgroundColor = [UIColo...
分类:
移动开发 时间:
2014-07-01 09:54:31
阅读次数:
246
定义一个UIView:主要是在这个View里面加一个UIImageView,画图都在这个UIImageView里面进行
@property(nonatomic) CGPoint prePoint; //手指在进入move事件之前的那个点
@property(nonatomic) CGPoint oppsitePoint; //手指在进入move事件之前的那个点
@property(nonat...
分类:
移动开发 时间:
2014-07-01 09:04:36
阅读次数:
359
建一个类如,在Contans.swift中import UIKitlet kMAIN_SIZE = UIScreen.mainScreen().bounds在其他地方直接用比如在MyTabbarViewController.swift中var bgView = UIView(frame:CGRect...
分类:
其他好文 时间:
2014-07-01 00:06:49
阅读次数:
172