ios 屏幕内容超过屏幕大小问题。可以上下滚动 30
把所有内容添加到UIScrollview中
判断scrollview的contentsize的高度是否超过屏幕高度,如果超过屏幕高度,那么就可以滚动.如果没有超过屏幕高度就不可以滚动.
如果还有什么不明白的,回复我给你解决
像你说的这个类似于淘宝之类的 都是UITableview或者UICollectionView写的.你上网看看UITableview的实现,我先给你一些简单的实现逻辑 你看看
1. 在viewcontroller里 声明成员变量
@property (nonatomic, strong) UITableView * tableView;
2. 懒加载 重写getter方法 ,注意下 下面的那两个代理是最重要的,用来你显示UI和交互的
- (UITableView *)tableView{
if (!_tableView) {
_tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 44, SCREEN_WIDTH, SCREEN_HEIGHT - 64 ) style:UITableViewStyleGrouped];
_tableView.delegate = self;//代理是最重要的
_tableView.dataSource = self;//代理是最重要的
_tableView.backgroundColor = [UIColor clearColor];
_tableView.showsVerticalScrollIndicator = NO;
[_tableView registerNib:[UINib nibWithNibName:@"KBNoticeTableViewCell" bundle:nil] forCellReuseIdentifier:@"KBNoticeTableViewCell"];
}
return _tableView;
}
3. 在viewdidload里 把tableview添加到view上
[self.view addSubview:self.tableView];
4. 实现UITableview的代理方法
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return self.dataArray.count;//返回一共有多少行.可以根据不同的组返回不同的行数.
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
return 75;//返回每一行cell的高度.可以不同的行返回不同的高度
}
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
return CGFLOAT_MIN;//返回header的高度,没有的话返回最小值
}
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
return CGFLOAT_MIN;//返回footer的高度 没有的话返回最小值,
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
//创建某一行cell 我用的是xib注册的cell
KBNoticeTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"KBNoticeTableViewCell" forIndexPath:indexPath];
cell.dataDic = self.dataArray[indexPath.row];
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
//点击某一行cell
}
这样你就能实现一个你说的那个功能了.还不懂你就百度查查UITableview的实现,很多简书都写了入门级别的教程
http://code.cocoachina.com/detail/170685/AH3DPullRefresh/
http://www.cocoachina.com/bbs/read.php?tid=170678
你只要新建一个UIView,设置成你需要的大小,在上面摆UI,然后addSubView成为ScrollView的子视图,设置ScrollView的contentSize为这个view的size就可以实现滚动了。都是很基本的东西,多做做就会了。