CALayer *sublayer = [CALayer layer]; sublayer.backgroundColor = [UIColor purpleColor].CGColor; sublayer.shadowOffset = CGSizeMake(0, 3); subl...
分类:
移动开发 时间:
2015-04-16 17:00:35
阅读次数:
171
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary
*)launchOptions {
UIWindow * window = [[UIWindow
alloc]initWithFrame:[UIScreen
mainScreen].bound...
分类:
其他好文 时间:
2015-04-16 12:29:26
阅读次数:
111
// Created By 郭仔
UIStepper 加减法器:
UILabel * leb = [[UILabel alloc]initWithFrame:CGRectMake(100, 200, 100, 100)];
leb.backgroundColor = [UIColor redColor];
self.label = leb;
[self.window ...
分类:
其他好文 时间:
2015-04-15 19:36:36
阅读次数:
109
上一话介绍了视图绘制的一些基本原理,这一话继续展开。UIBezierPath可以绘制许多有趣的图形。
使用不同的构造器,比如roundedRect就是四个角被磨圆了的矩形,或者干脆是椭圆和圆。你甚至可以剪切任意的path,剪切使用addClip方法,在剪切了之后你可以针对剪切的这部分进行操作,例如你正在绘制一个卡片,这个卡片有小小的圆角效果,你可以把卡片绘制在一个矩形里面,然后把它剪切到...
分类:
移动开发 时间:
2015-04-15 13:43:26
阅读次数:
178
UIWebView加载过程中,在页面没有加载完毕前,会显示一片空白。为解决这个问题,方法如下:
方法1、让UIWebView背景透明。
webView.backgroundColor = [UIColor clearColor];
webView.opaque = NO;
[webView setBackgroundColor:[UIColor colorWithPatternImag...
分类:
Web程序 时间:
2015-04-13 00:25:57
阅读次数:
140
//创建UIView对象//可以将其他空间添加到view上,当挪动View时,其他控件随之挪动UIView *view=[[UIView alloc]init];view.frame=CGRectMake(100,200,100,100);view.backgroundColor=[UIColor ...
分类:
其他好文 时间:
2015-04-10 21:48:57
阅读次数:
104
UIView *redView=[[UIView alloc]initWithFrame:CGRectMake(0,20,200,200)];redView.backgroundColor=[UIColor redColor];//允许子视图放大或缩小 默认autoresizeSubviews的就为...
分类:
其他好文 时间:
2015-04-10 20:06:51
阅读次数:
107
一.构成(从底层往上数)UINavigationController 的view内容视图,也就是栈顶控制器的viewUINavigationBar:UIView实例 ://设计nav的背景[nav.view setBackgroundColor:[UIColor blueColor]];//设置视图...
分类:
其他好文 时间:
2015-04-10 15:22:23
阅读次数:
134
1、searchBar.searchBarStyle = UISearchBarStyleMinimal;2、searchBar.backgroundImage = [self imageWithColor:[UIColor clearColor]];- (UIImage *)imageWithCo...
分类:
其他好文 时间:
2015-04-09 17:02:13
阅读次数:
117
//通过颜色来生成一个纯色图片- (UIImage *)buttonImageFromColor:(UIColor *)color{ CGRect rect = CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.he....
分类:
移动开发 时间:
2015-04-09 15:09:18
阅读次数:
209