效果图:.h#import @interface RootViewController : UIViewController{ UITableView *mTableView;}@end.m- (void)viewDidLoad{ [super viewDidLoad]; // D...
分类:
其他好文 时间:
2014-10-17 13:39:00
阅读次数:
166
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
...
分类:
其他好文 时间:
2014-10-17 11:55:33
阅读次数:
136
我有一个梦想就是成为一个iOS开发.........菜鸟,老规矩,一切从helloworld开始。 iOS8伴随着iphone6/6plus而来,Xcode6伴随着iOS8而来,苹果更新换代的速度依然很快,从硬件到软件,每次更新就意味着开发者们又要面临着一次次的恶补,当然,像我这样励志成为i...
分类:
移动开发 时间:
2014-10-17 02:11:03
阅读次数:
401
UICollectionView在2012年被提出,已经不是什么新技术了,在此只是做一下简单的实现。
集合视图:UICollectionView
UICollectionView和UITableView类似,它也是datasource和delegate设计模式的:datasource为view提供数据源,告诉view要显?示些什么东?以及如何显示它们,delegate提供一些样式的?细节以及?...
分类:
移动开发 时间:
2014-10-16 22:50:23
阅读次数:
450
本节由CocoaChina翻译组成员DevTalking (博客)翻译自苹果官方文档App Extension Programming Guide--Handling Common Scenarios一节,敬请勘误。欢迎加入我们的翻译小组,详情请参看:CocoaChina编辑和译者招募! 当编写自定...
分类:
移动开发 时间:
2014-10-16 22:11:43
阅读次数:
361
没有点击索引的时候的效果图:点击索引后的效果图:代码:RootViewController.h#import @interface RootViewController : UIViewController{ UITableView * city; NSDictionary * dic;...
分类:
其他好文 时间:
2014-10-16 21:02:43
阅读次数:
184
一站式解决Undefined symbols for architecture问题。。...
分类:
移动开发 时间:
2014-10-16 01:03:31
阅读次数:
181
iOS8新特性之交互式通知
iOS8以前的远程通知想必大家都非常熟悉了,这里不做过多介绍...
分类:
移动开发 时间:
2014-10-15 21:56:51
阅读次数:
230
此套替换方案采用“UIView+动画”方式实现(将UIActionSheet替换为UIView)...
分类:
移动开发 时间:
2014-10-15 20:06:41
阅读次数:
166