//在viewDidLoad方法中创建Toolbartoolbar = [[UIView
alloc] initWithFrame:CGRectMake(0, 0, 320, 66)];toolbar.backgroundColor =
[UIColor redColor];//添加到tableVi...
分类:
移动开发 时间:
2014-05-26 13:29:07
阅读次数:
207
1 UIImage *image = [UIImage
imageNamed:tempAppInfo.icon];2 UIImageView *appIcon = (UIImageView *) [appView
viewWithTag:0]; 3 appIcon.image = image;每次执...
分类:
其他好文 时间:
2014-05-26 12:35:45
阅读次数:
226
GMCPagingScrollViewhttps://github.com/GalacticMegacorp/GMCPagingScrollViewGMCPagingScrollView
is a UIView containing a horizontally scrolling paging U...
分类:
其他好文 时间:
2014-05-26 11:19:10
阅读次数:
352
Search bar delegate-
(void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar{ UITextField
*searchBarTextField = nil; for (UIView *mainview i...
分类:
移动开发 时间:
2014-05-26 07:25:46
阅读次数:
310
核心概念(Core concepts)在iOS上面常见的动画以及交互包括以下几种:? Core
Animation? UIView animations? Motion effects? Gesture driven interactions?
CADisplayLink那么UIKit Dynami...
分类:
其他好文 时间:
2014-05-26 07:11:39
阅读次数:
313
参考文章来自objcio网站
为什么要编写轻量级的View Controller??
1、作为iOS项目中最大的文件,View
Controllers中的代码复用率几乎是最低的
2、重量级的View COntroller加大了测试的复杂度。
所以关注View
Controller的瘦身,把业务逻辑、网络请求、Views的代码移到合适的地方,进而提高代码可读性、降低耦合...
分类:
其他好文 时间:
2014-05-24 23:34:38
阅读次数:
427
iOS开发UI基础—九宫格坐标计算一、要求完成下面的布局二、分析寻找左边的规律,每一个uiview的x坐标和y坐标。三、实现思路(1)明确每一块用得是什么view(2)明确每个view之间的父子关系,每个视图都只有一个父视图,拥有很多的子视图。(3)可以先尝试逐个的添加格子,最后考虑使用for循环,...
分类:
移动开发 时间:
2014-05-24 09:35:38
阅读次数:
279
#import
@interface ScrollView :
UIView
{
UIView *contentView;
CGSize contentSize;
CGPoint contentOffset;
CGRect contentFrame;
BOOL scrollEnabled...
分类:
其他好文 时间:
2014-05-21 15:09:25
阅读次数:
215
所有的UI控件最终都继承自UIView,UI控件的公共属性都定义在UIView中,UIView的常见属性UIView *superview;
获得自己的父控件对象NSArray *subviews; 获得自己的所有子控件对象NSInteger tag; 控件的ID(标识),父控件可以通过tag...
分类:
移动开发 时间:
2014-05-21 14:20:08
阅读次数:
307