本月博客排行
-
第1名
Xeden -
第2名
fantaxy025025 -
第3名
bosschen - paulwong
- johnsmith9th
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - gengyun12
- wy_19921005
- vipbooks
- e_e
- benladeng5225
- wallimn
- ranbuijj
- javashop
- jickcai
- fantaxy025025
- zw7534313
- qepwqnp
- robotmen
- 解宜然
- ssydxa219
- sam123456gz
- zysnba
- sichunli_030
- tanling8334
- arpenker
- gaojingsong
- xpenxpen
- kaizi1992
- wiseboyloves
- jh108020
- xyuma
- ganxueyun
- wangchen.ily
- xiangjie88
- Jameslyy
- luxurioust
- mengjichen
- lemonhandsome
- jbosscn
- nychen2000
- zxq_2017
- lzyfn123
- wjianwei666
- forestqqqq
- ajinn
- siemens800
- hanbaohong
- 狂盗一枝梅
- java-007
- zhanjia
- 喧嚣求静
- Xeden
最新文章列表
[IOS]两个tableview
参考:http://www.cnblogs.com/yutingliuyl/p/7052427.html
操作也很简单,就是判定是哪个table就ok
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
if ([tableView isEqual:sel ...
(转)[IOS]iOS 7后导航控制器导致ScrollView和TableView偏移
转自:https://www.jianshu.com/p/4cdcfb97704f
设置有导航控制器后,ScrollView和TableView的ContentInset默认偏移64,如果不希望系统自动偏移,可以通过以下三种方式取消
在导航控制器下将Translucent穿透/透明效果取消
self.navigationBar.translucent = NO;
当 ...
[IOS]tableview---delete按钮颜色改变以及事件
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
}
-(BOOL)tableView:(UITableView *)tableView ...
[IOS]关于tableview编辑状态那个delete按钮改成中文的问题
- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
{
return @"删除";
}
(转)UITableView的分割线长短的控制
转自:http://blog.csdn.net/smiling8866/article/details/51548234
一、遇到问题
当我利用第三方 FPPopoverController 来显示UITableView的时候,cell的分割线左边没有顶满,而右边却顶满了。这样显示很难看。我需要让其左右两边都是未顶满状态,距离是15像素。
二、解决方法
1、在UITableVie ...
[IOS]刷新tableview后不丢失cell的selected状态
1.核心语句:
[_tableView reloadData];
[_tableView layoutIfNeeded];//重置约束
刷新table地方后面添加:
NSIndexPath *ip = [NSIndexPath indexPathForRow:0 inSection:_lastSelectRow];
[_tableView selectRowAtInd ...
(转)[IOS] UITableView 基本使用方法总结
转自:http://blog.csdn.net/tangaowen/article/details/6438362
1. 首先,Controller需要实现两个 delegate ,分别是 UITableViewDelegate 和 UITableViewDataSource
2.然后 UITableView对象的 delegate要设置为 self。
...
【ios】tableview总结
一.定义tableview
1.定义dataSource & delegate
在storyboard上选取tableview,在链接器上把dataSource & delegate都拉到viewcontroller的小圆点上
2.在头文件上继承<UITableViewDataSource,UITableViewDelegate>
3.声明tableview: ...
判断scrlloview是否是向下滑动的
#pragma mark 判断页面是否是向下滑动的
-(void)scrollViewWillBeginDragging:(UIScrollView *)scrollView {
CGPoint translation = [scrollView.panGestureRecognizer translationInView:scrollView.superview];
if ...
javafx 2 的表格 绑定到 map
当 一个tabview 要不同时候展现不同的数据表时,往往需要tabview的数据绑定到一个动态集合上。 下面的例子就展示了这种功能。
其中Person类,可以是共用,随便取的一个名字,不要以为仅仅是表示人名才能用
本例是 jdk 1.8 所写。 用了lamda达表达式
界面是这样的
/*
* To change this license header, choose L ...
简单表视图并实现添加数据
1.基础:表用于显示数据列表。数据列表中的每项都由行表示。表视图是显示表数据的视图对象,它是UITableView类的一个实例,表中的每个可见行(表视图单元)都由UITableViewCell类实现。
2.实现表视图。
首先说明一下数据源(datasource)和委托(delegate)
在头文件中需要添加以下代码:<UITableViewDelegate,UITableViewDataSou ...
UICollectionView 刷新问题。reload不能直接用
刷新UICollectionView的时候不能直接用 reload方法。。。
[self reloadInputViews]; ///这句至关重要。。。。
NSIndexPath *indexPath = [self.collectionViewindexPathForCell:slideDeleteCell];
[self.collectionView ...
CCTableView滚动到指定位置
本方法只能在CCTableView的扩展类中实现,因为其中的计算方法依赖于CCTableView的protected方法。
具体代码如下:
void scrollToCellIndex(int index) {
CCPoint offset = ccpSub(CCPointZero, _offsetFromIndex(index));
float ...
水平放置的tableview
//
// BMViewController.m
// UITableViewTest
//
// Created by wangbaoxiang on 13-4-23.
// Copyright (c) 2013年 apple. All rights reserved.
//
#import "BMViewController.h"
@in ...
在tableViewTable中创建tableCell,不同分区含有不同数量的Cell(转)
1、确定tableview中分分区数
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 2;
}
2、确定每个section中的cell数量
- (NSInteger)tableVie ...
tableView 选中时的背景颜色设置
1.系统默认的颜色设置
//无色
cell.selectionStyle = UITableViewCellSelectionStyleNone;
//蓝色 ,系统默认是蓝色的
cell.selectionStyle = UITableViewCellSelectionStyleBlue;
//灰色
cell.selectionStyle = UITableViewCellSel ...
设置UITableView Section的背景颜色和字体颜色
有个app需要用到tableView,系统自带的section样式不怎么好看,需要自己修改下,找到了修改的方法,mark下
section所显示的灰色背景和白色字体是默认的,调用以下方法即可实现
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
retu ...