在自定义tableView中,为cell添加button点击事件后,如何获取其对应的序号?1、创建tableView:先创建一个成员变量:@interface MyCameraViewController (){ UITableView *_tableView;}@end在viewDidLoad中....
分类:
移动开发 时间:
2014-06-28 16:29:13
阅读次数:
347
创建UITableViewController子类的实例后,IDE生成的代码中有例如以下段落:[cpp]view plaincopy-(UITableViewCell*)tableView:(UITableView*)tableViewcellForRowAtIndexPath:(NSIndexPa...
分类:
移动开发 时间:
2014-06-25 15:35:10
阅读次数:
247
iOS Dev (63) 如何在 TableView 滚动时收起键盘?
作者:阿锐地址:http://blog.csdn.net/prevention
-
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
[_inputTextView resignFirstResponder];
}
-
转载请注明来自:ht...
分类:
移动开发 时间:
2014-06-25 10:07:33
阅读次数:
264
NSIndexPath *messageIndexPath = [NSIndexPath indexPathForRow:afterRowCount-1 inSection:0];
[self.tableView beginUpdates];
[self.tableView insertRowsAtIndexPaths:@[messageIndexPath] withRowAnim...
分类:
其他好文 时间:
2014-06-25 09:59:01
阅读次数:
191
Google自Android4.0出了TextureView,...
分类:
移动开发 时间:
2014-06-24 23:47:57
阅读次数:
414
什么叫潜规则?其实就是不明文规定的一些规则,关键是他没法明文规定,因为有的规则太没节操。在我们职场中有些规则你不遵守将举步艰难,而要玩转这些潜规则,那么你必须要具备如下10个潜意识:
1、项目会议。那要看这个会议的主持人是谁?
很多小范围的项目会议确实是真的以讨论项目解决方案为目的,不管是技术还是实施上。
但是往往项目会议领导参与的比较多,譬如老板参与了或者技术总监参与甚至有的会议客户参...
分类:
其他好文 时间:
2014-06-24 19:35:00
阅读次数:
175
GLSurfaceView是OpenGL中的一个类,也是可以预览Camera的,而且za...
分类:
移动开发 时间:
2014-06-24 18:19:56
阅读次数:
357
//#define IOS7_OR_LATER ( [[[UIDevice currentDevice] systemVersion] compare:@"7.0"] != NSOrderedAscending )- (void)setFrame:(CGRect)frame { if (I...
分类:
其他好文 时间:
2014-06-22 23:54:13
阅读次数:
363
杂家前文是在2012年的除夕之夜仓促完成,后来很多人指出了一些问题,琐事缠身一直没有进行升级。后来随着我自己的使用,越来越发现不出个升级版的demo是不行了。有时候就连我自己用这个demo测一些性能、功能点,用着都不顺手。当初代码是在linux下写的,弄到windows里下全是乱码。还要自己改几分钟才能改好。另外,很多人说不能正常预览,原因是我在布局里把Surfaceview的尺寸写死了。再有就是...
分类:
移动开发 时间:
2014-06-22 06:30:47
阅读次数:
546
1. First artical, notice the last thing - Connecting the DataSource and Delegate:http://www.appcoda.com/ios-programming-tutorial-create-a-simple-table...
分类:
移动开发 时间:
2014-06-20 16:18:48
阅读次数:
277