时间:2021-05-19
一,效果图。
二,工程图。
三,代码。
RootViewController.h
RootViewConroller.m
#import "RootViewController.h"@interface RootViewController ()@end@implementation RootViewController- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil{ self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; if (self) { // Custom initialization } return self;}- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view. [self initBackGroundView];}#pragma -mark -functions-(void)initBackGroundView{ //tableView后的滚动条 _scrolView=[[UIScrollView alloc]initWithFrame:CGRectMake(0,19, 320, 460)]; _scrolView.contentSize=CGSizeMake(320*2, 460); _scrolView.delegate=self; _scrolView.pagingEnabled=YES; _scrolView.showsVerticalScrollIndicator=NO; _scrolView.bounces=NO; [self.view addSubview:_scrolView]; //tableView1 _tableView =[[UITableView alloc]initWithFrame:CGRectMake(0, 19, 320, 460)]; _tableView.tag=1; _tableView.delegate=self; _tableView.dataSource=self; _tableView.scrollEnabled=NO; [_scrolView addSubview:_tableView]; //tableView2 _tableView2=[[UITableView alloc]initWithFrame:CGRectMake(320, 19, 320, 460)]; _tableView2.tag=2; _tableView2.delegate=self; _tableView2.dataSource=self; _tableView2.scrollEnabled=NO; [_scrolView addSubview:_tableView2];}#pragma -mark -UITableViewDelegate-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{ return 3;}-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{ return 125;}-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ _cell=[tableView dequeueReusableCellWithIdentifier:@"ID"]; if (_cell==nil) { _cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"ID"]; } _cell.selectionStyle=UITableViewCellSelectionStyleNone; if (tableView.tag==1){ _cell.textLabel.text=@"1"; }else if(tableView.tag==2){ _cell.textLabel.text=@"2"; } return _cell;}以上内容是小编给大家介绍的Android程序开发之UIScrollerView里有两个tableView 的详细介绍,希望对大家有所帮助!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Android里有两个类android.view.GestureDetectorandroid.view.GestureDetector.SimpleOnGes
本文实例讲述了Android编程中的Menu功能菜单。分享给大家供大家参考,具体如下:Android功能菜单的设计,程序里定义了两个菜单子项,一个是"关于",一
在项目开发时遇到一个问题,我在UIViewController上面直接创建了一个UIScrollerView,把UIScrollerView作为一个子视图添加到
ios开发之xcode对比两个分支中同一个文件对于同一个项目的两个分支,因为两个分支可能各自都做了一些修改,所以通过sourcecontrol中的history
本文实例讲述了Android开发实现ScrollView中嵌套两个ListView的方法。分享给大家供大家参考,具体如下:做的项目中要使用两个ListView在