//在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
UIDatePicker继承关系如下:
UIDatePicker-->UIControl-->UIView-->UIResponder-->NSObject1、创建UIDatePicker创建一个UIDatePicker控件并显示出来来看看这玩意长什么模样,代码:1
UIDatePicke...
分类:
其他好文 时间:
2014-05-23 21:57:51
阅读次数:
520
1. iOS允许最近本地通知数量最大为多少?
A.64 B.32 C.128 D.16
2. int x = 1; int y = 2; int z = x^y*y; NSLog(@"%d",z); 请问输出结果是多少
A.1 B.2 C.4 D.5
错误 应该选择:D.5
3. 让一个UIView刷新的方法是()
A.setNeedsDisplay B.drawR...
分类:
其他好文 时间:
2014-05-22 07:14:49
阅读次数:
222
//获取view的controller- (UIViewController
*)viewController { for (UIView* next = [self superview]; next; next =
next.superview) { UIResponder *nextRe...
分类:
移动开发 时间:
2014-05-21 23:38:35
阅读次数:
1000
#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