
ios开发
lxl_it
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
iPhone UIView 详解
曾经有人这么说过,在iphone里你看到的,摸到的,都是UIView,所以UIView在iphone开发里具有非常重要的作用。那么UIView我们到底知道多少呢。请看看下面的问题, 如果这些你都知道,那么本文章的内容就请绕道,如果你还不太清楚,我想看了下面的内容,你就明白了。 1。bounds和frame分别表示什么? 2。ContentMode里UIViewContentMod转载 2012-07-27 11:02:45 · 764 阅读 · 0 评论 -
iPhone 的 UIView的学习
UIView对象在屏幕中定义了一个复杂区域和界面来管理这个区域的内容 视图的职责: 画图和动画。 布局和子视图管理。 事件处理。 1、创建一个视图对象 CGRect viewRect = CGRectMake(10,10,100,100); UIView* myView = [[UIView alloc] initWithFrame:viewRect]; [self原创 2012-07-27 11:04:39 · 378 阅读 · 0 评论 -
iPhone开发中经常用到的控件尺寸大集合
Element Size (in points) Window (including status bar) 320 x 480 pts Status Bar (How to hide the status bar) 20 pts View inside window (visible status bar) 320 x 46原创 2012-07-27 11:23:15 · 928 阅读 · 0 评论