iOS 二级菜单(UITableView实现) 注释全 帮助新手学习...
分类:
移动开发 时间:
2014-07-28 16:22:33
阅读次数:
351
最终效果图:
Girl.h
//
// Girl.h
// 12_tableView的增删改
//
// Created by beyond on 14-7-27.
// Copyright (c) 2014年 com.beyond. All rights reserved.
//
#import
@interface Girl : NSObject
// UI控...
分类:
移动开发 时间:
2014-07-28 15:43:43
阅读次数:
358
if (_indexCollation ==nil) { _indexCollation= [UILocalizedIndexedCollationcurrentCollation]; } NSArray *localTracks = [NSArrayarray]; //...
分类:
其他好文 时间:
2014-07-28 15:34:33
阅读次数:
208
总结几个TableView常用的代码 初始化方面 static string CellIndetifier="cellIndetifier";-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{ return 1;//表中...
分类:
移动开发 时间:
2014-07-28 11:22:30
阅读次数:
222
在做tableView的时候,我们有时候需要根据cell的高度动态来调整,最近在网上看到一段代码不错,跟大家Share一下。
在
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath
*)indexPath{
类中获取cell的高度:
CGSize bo...
分类:
移动开发 时间:
2014-07-27 23:42:29
阅读次数:
421
下面我们通过一个实例详细了解一下,层中单点触摸事件的实现过程。感受一下它的缺点和优点。该实例场景如下图所示,场景中有两个方块精灵,我们可以点击和移动它们。 下面我们看看HelloWorldScene.cpp具体的实现代码如下:bool HelloWorld::init()
{
if( !Layer::init() )...
分类:
其他好文 时间:
2014-07-27 11:43:15
阅读次数:
219
SWTableViewCell 是托管在GitHub上的一个第三方UITableViewCell子类,它提供向左向右滑动出现“删除”,“更多”等自定义UIButton的功能,该功能类似于iOS7中的邮件中的Cell。GitHub主页:https://github.com/CEWendel/SWTa....
分类:
移动开发 时间:
2014-07-26 17:03:11
阅读次数:
344
UITabBarController详解(介绍和设置)...
分类:
其他好文 时间:
2014-07-26 02:56:16
阅读次数:
210
针对 TableView,有些时候需要在点击 cell 时,展开这行 cell,显现出更多的选项或者全部内容等。比较容易想到的处理方案就是利用 section,在未选择之前,每一行都是一个 section,待展开的内容都在这个 section 的 row 里面。在点击事件里,reload 当前选中的...
分类:
其他好文 时间:
2014-07-25 10:03:14
阅读次数:
222
1 interface ViewController () 2 3 @property (weak, nonatomic) IBOutlet UITableView *tableView; 4 5 @end 6 7 @implementation ViewController 8 9 ...
分类:
其他好文 时间:
2014-07-25 02:24:44
阅读次数:
248