码迷,mamicode.com
首页 >  
搜索关键字:custom cell    ( 7916个结果
UICollectionView 集合视图
创建集合视图UICollectionView*cView=[[UICollectionViewalloc]initWithFrame:CGRectMake(0,0,320,568)collectionViewLayout:flowLayout];cView.dataSource=self;设置dataSource代理cView.delegate=self;设置delegate代理[self.viewaddSubview:cView];集合视图cell的数量-(NSIn..
分类:其他好文   时间:2014-09-20 02:24:26    阅读次数:141
UICollectionView cell 的布局
UICollectionViewFlowLayout*flowLayout=[[UICollectionViewFlowLayoutalloc]init];滚动方向:flowLayout.scrollDirection=UICollectionViewScrollDirectionHorizontal;行间距(最小)flowLayout.minimumLineSpacing=0;列间距(最小)flowLayout.minimumInteritemSpacing=30;item大..
分类:其他好文   时间:2014-09-20 02:24:17    阅读次数:173
使用重用机制创建cell的两种方法
一.UICollectionView使用的cell重用机制  1.首先服从协议,如果自定义cell,导入自定义cell类的头文件 2.定义全局变量重用标识符 static NSString *cellIdentifier = @“重用”; 3.注册cell(collection,为UICollectionView对象) [collection registerClass:[U...
分类:其他好文   时间:2014-09-19 13:54:15    阅读次数:228
iOS:改变UITableViewCell的选中背景色
要改变UITableViewCell选中时的背景色,需要在-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)方法中添加如下代码:// 设置cell选中的背景色UIVi...
分类:移动开发   时间:2014-09-19 13:35:35    阅读次数:164
[IOS UICollectionView模版]
创建CollectionCell模版:1、新建类CollectionCell继承自UICollectionViewCell2、新建Xib,命名为CollectionCell.xiba.选中CollectionCell.xib删掉默认的View,从控件中拖一个Collection View Cell(...
分类:移动开发   时间:2014-09-19 13:23:45    阅读次数:268
SPJS Upload for SharePoint: Custom upload page for uploading documents to various document libraries in a site collection
http://spjsblog.com/2013/12/08/spjs-upload-for-sharepoint-custom-upload-page-for-uploading-documents-to-various-document-libraries-in-a-site-collectio...
分类:Web程序   时间:2014-09-18 23:33:04    阅读次数:253
C# datetimePicker控件格式设置
//必须先设置Format属性为Custom,然后才能自定义格式1 this.dtPicker.Format = DateTimePickerFormat.Custom;2 this.dtPicker.CustomFormat = "yyyy-MM-dd";yyyy代表年,MM代表月份(区分大小写)...
分类:其他好文   时间:2014-09-18 20:30:34    阅读次数:235
问题 “cell 出栈 selectBox 已选的图标,被释放掉,再次进入屏幕时,没有了已选图标 ” 解决方案
如何 去解决 列表里面的selectBox已选情况,在滑出屏幕后被清除的问题。我来在这里 详细说明一下,在cell里面写一个方法,去专门修复滑出后,又滑进来 图标被冲刷掉的cell。 在 cellForRow里面 获得cell后,让其显示原貌。
分类:其他好文   时间:2014-09-18 20:16:54    阅读次数:113
iOS 协议使用
这整个是一个cell,框框的放的image(有很多图片,可以左右滑动,我用iCarousel做的,这个的代理写在自定义cell类里面的)。现在需要点击图片进入下一个页面。。。。现在我点击图片,都会进入到自定义cell类里面的代理里,但是cell类里面,是不让我弹出下一个viewcontroller的。。??不然用[self.navigationController pushViewControll...
分类:移动开发   时间:2014-09-18 19:03:24    阅读次数:212
Installing the Eclipse Plugin
Installing the Eclipse PluginAndroid offers a custom plugin for the Eclipse IDE, called Android Development Tools (ADT). This plugin provides a powerf...
分类:系统相关   时间:2014-09-18 11:07:13    阅读次数:385
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!