摘要:
本篇主要简单介绍了一下restkit中的网络连接,字段映射,与RKTableController。并且在最后给出一个简单的load more的RKTableController的派生子类。RestKit连接:https://github.com/RestKit/RestKit/一.网络连接这里主要用到的是RKClient初始化- (void)initRKClient {// Initialize with a Base URL RKClient* client = [RKClient clientWithBaseURL:@"http://restkit.org"]; ! / 阅读全文
随笔档案-2012年07月
更改UIView的背景
2012-07-11 00:08 by v2m, 6685 阅读, 收藏, 编辑
摘要:
本文分析对比了各种更改UIView背景的方法。当然,背景是根据一个图片来的(非纯色)。一.加一个uiimageview在uiview上面 UIImageView* imageView = [[UIImageView alloc] initWithFrame:view.bounds]; imageView.image = [[UIImage imageNamed:@"name.png"] stretchableImageWithLeftCapWidth:left topCapHeight:top]; [view addSubview:imageView];这种方式,如果原始图 阅读全文