我有一个 UITableView。这是动态表。当您触摸“添加文件”按钮时,我正在创建一个新的部分和行。如果您再次触摸,我只会创建行。当您触摸“添加号码”按钮时,我正在创建一个新的部分和行。如果您再次触摸,我只会创建行。还行吧。但是如果你删除第一部分,第二部分不会聚焦到顶部。我正在添加一些屏幕截图和我的所有代码。
请帮帮我。
这是我的第一个屏幕
我添加了一个"file"和两个“数字”
我删除了"file",但第二部分没有出现。
代码:
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
@synthesize tblListe,btnCancel,btnEdit;
- (void)viewDidLoad {
[super viewDidLoad];
self.automaticallyAdjustsScrollViewInsets = NO;
FileArr = [[NSMutableArray alloc] init];
NumberArr = [[NSMutableArray alloc] init];
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
int a=0;
if (section==0) {
if(FileArr.count>0)
a=FileArr.count;
} else {
if(NumberArr.count>0)
a=NumberArr.count;
}
return a;
}
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
return 2;
}
-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
return 37.0;
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *hucre = [[UITableViewCell alloc] init];
if(indexPath.section==0){
hucre.textLabel.text=[FileArr objectAtIndex:indexPath.row];
}else{
hucre.textLabel.text=[NumberArr objectAtIndex:indexPath.row];
}
hucre.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
return hucre;
}
-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
UIView *AnaView=[[UIView alloc]initWithFrame:CGRectMake(0,0,self.view.frame.size.width,0)];
UIView *AsilView=[[UIView alloc]initWithFrame:CGRectMake(5,0,self.view.frame.size.width ,35)];
CGRect labelFrame = CGRectMake(5, 0, self.view.frame.size.width/3, 35);
UILabel *myLabel = [[UILabel alloc] initWithFrame:labelFrame];
int say=0;
if(section==0){
myLabel.text = @"Files";
say=FileArr.count;
}else{
myLabel.text = @"Numbers";
say=NumberArr.count;
}
myLabel.font = [UIFont boldSystemFontOfSize:14.0f];
myLabel.textAlignment = NSTextAlignmentCenter;
myLabel.textColor = [UIColor whiteColor];
myLabel.backgroundColor = [self colorWithHexString:@"ce1b27"];
UIView *LineView=[[UIView alloc]initWithFrame:CGRectMake(5,AsilView.frame.size.height,self.view.frame.size.width-5,2)];
LineView.backgroundColor = [self colorWithHexString:@"ce1b27"];
[AnaView addSubview:AsilView];
[AnaView addSubview:myLabel];
[AnaView addSubview:LineView];
if (say>0) {
return AnaView;
}else{
return nil;
}
}
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
NSString *x;
if (section==0) {
if(FileArr.count>0)
x=@"Files";
else
x=nil;
} else {
if (NumberArr.count>0)
x=@"Numbers";
else
x=nil;
}
return x;
}
-(NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath{
return @"Delete";
}
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
if(editingStyle == UITableViewCellEditingStyleDelete){
if (indexPath.section==0) {
[FileArr removeObjectAtIndex:indexPath.row];
}else{
[NumberArr removeObjectAtIndex:indexPath.row];
}
}
[self SatirIslem:0];
//NSLog(@"%@",FileArr);
[tblListe reloadData];
}
-(BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath{
return YES;
}
- (IBAction)Duzenle:(id)sender {
[tblListe setEditing:YES animated:YES];
btnCancel.enabled = YES;
}
- (IBAction)Iptal:(id)sender {
[tblListe setEditing:NO animated:YES];
btnCancel.enabled = NO;
}
- (IBAction)DosyaEkle:(id)sender {
[FileArr addObject:@"This is a File"];
[self SatirIslem:1];
}
- (IBAction)NumaraEkle:(id)sender {
[NumberArr addObject:@"This is a Number"];
[self SatirIslem:1];
}
-(void)SatirIslem:(NSInteger) islem{
CGFloat x=0,y=0,w=0,h=0;
if (islem==1) { // satır Ekle
x=tblListe.frame.origin.x;
y=tblListe.frame.origin.y;
w=tblListe.frame.size.width;
h=tblListe.frame.size.height;
if(FileArr.count==1 || NumberArr.count==1){
h+=35+44; // 35 header için 44 satır için
}else{
h+=44;
}
}
if (islem==0) {
x=tblListe.frame.origin.x;
y=tblListe.frame.origin.y;
w=tblListe.frame.size.width;
h=tblListe.contentSize.height;
if(FileArr.count==0 && NumberArr.count==0){
h=1;
}else if(FileArr.count==0 || NumberArr.count==0) {
h-=44+35;// 35 header için 44 satır için
}else{
h-=44;
}
}
tblListe.frame=CGRectMake(x,y,w,h);
[tblListe reloadData];
}
-(UIColor*)colorWithHexString:(NSString*)hex
{
NSString *cString = [[hex stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] uppercaseString];
if ([cString length] < 6) return [UIColor grayColor];
if ([cString hasPrefix:@"0X"]) cString = [cString substringFromIndex:2];
if ([cString length] != 6) return [UIColor grayColor];
NSRange range;
range.location = 0;
range.length = 2;
NSString *rString = [cString substringWithRange:range];
range.location = 2;
NSString *gString = [cString substringWithRange:range];
range.location = 4;
NSString *bString = [cString substringWithRange:range];
unsigned int r, g, b;
[[NSScanner scannerWithString:rString] scanHexInt:&r];
[[NSScanner scannerWithString:gString] scanHexInt:&g];
[[NSScanner scannerWithString:bString] scanHexInt:&b];
return
[UIColor colorWithRed:((float) r / 255.0f)green:((float) g / 255.0f) blue:((float) b / 255.0f)alpha:1.0f];
}
@end
最佳答案
您可以通过返回不同的高度值来解决这个问题。
-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
if (section==0) {
if(FileArr.count==0)
return 0;
} else {
if(NumberArr.count==0)
return 0;
}
return 37.0;
}
关于ios - 如何删除 UITableView 部分标题删除后创建的空间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28347594/
我正在学习如何使用Nokogiri,根据这段代码我遇到了一些问题:require'rubygems'require'mechanize'post_agent=WWW::Mechanize.newpost_page=post_agent.get('http://www.vbulletin.org/forum/showthread.php?t=230708')puts"\nabsolutepathwithtbodygivesnil"putspost_page.parser.xpath('/html/body/div/div/div/div/div/table/tbody/tr/td/div
总的来说,我对ruby还比较陌生,我正在为我正在创建的对象编写一些rspec测试用例。许多测试用例都非常基础,我只是想确保正确填充和返回值。我想知道是否有办法使用循环结构来执行此操作。不必为我要测试的每个方法都设置一个assertEquals。例如:describeitem,"TestingtheItem"doit"willhaveanullvaluetostart"doitem=Item.new#HereIcoulddotheitem.name.shouldbe_nil#thenIcoulddoitem.category.shouldbe_nilendend但我想要一些方法来使用
出于纯粹的兴趣,我很好奇如何按顺序创建PI,而不是在过程结果之后生成数字,而是让数字在过程本身生成时显示。如果是这种情况,那么数字可以自行产生,我可以对以前看到的数字实现垃圾收集,从而创建一个无限系列。结果只是在Pi系列之后每秒生成一个数字。这是我通过互联网筛选的结果:这是流行的计算机友好算法,类机器算法:defarccot(x,unity)xpow=unity/xn=1sign=1sum=0loopdoterm=xpow/nbreakifterm==0sum+=sign*(xpow/n)xpow/=x*xn+=2sign=-signendsumenddefcalc_pi(digits
关闭。这个问题是opinion-based.它目前不接受答案。想要改进这个问题?更新问题,以便editingthispost可以用事实和引用来回答它.关闭4年前。Improvethisquestion我想在固定时间创建一系列低音和高音调的哔哔声。例如:在150毫秒时发出高音调的蜂鸣声在151毫秒时发出低音调的蜂鸣声200毫秒时发出低音调的蜂鸣声250毫秒的高音调蜂鸣声有没有办法在Ruby或Python中做到这一点?我真的不在乎输出编码是什么(.wav、.mp3、.ogg等等),但我确实想创建一个输出文件。
给定这段代码defcreate@upgrades=User.update_all(["role=?","upgraded"],:id=>params[:upgrade])redirect_toadmin_upgrades_path,:notice=>"Successfullyupgradeduser."end我如何在该操作中实际验证它们是否已保存或未重定向到适当的页面和消息? 最佳答案 在Rails3中,update_all不返回任何有意义的信息,除了已更新的记录数(这可能取决于您的DBMS是否返回该信息)。http://ar.ru
我在我的项目目录中完成了compasscreate.和compassinitrails。几个问题:我已将我的.sass文件放在public/stylesheets中。这是放置它们的正确位置吗?当我运行compasswatch时,它不会自动编译这些.sass文件。我必须手动指定文件:compasswatchpublic/stylesheets/myfile.sass等。如何让它自动运行?文件ie.css、print.css和screen.css已放在stylesheets/compiled。如何在编译后不让它们重新出现的情况下删除它们?我自己编译的.sass文件编译成compiled/t
我正在寻找执行以下操作的正确语法(在Perl、Shell或Ruby中):#variabletoaccessthedatalinesappendedasafileEND_OF_SCRIPT_MARKERrawdatastartshereanditcontinues. 最佳答案 Perl用__DATA__做这个:#!/usr/bin/perlusestrict;usewarnings;while(){print;}__DATA__Texttoprintgoeshere 关于ruby-如何将脚
Rackup通过Rack的默认处理程序成功运行任何Rack应用程序。例如:classRackAppdefcall(environment)['200',{'Content-Type'=>'text/html'},["Helloworld"]]endendrunRackApp.new但是当最后一行更改为使用Rack的内置CGI处理程序时,rackup给出“NoMethodErrorat/undefinedmethod`call'fornil:NilClass”:Rack::Handler::CGI.runRackApp.newRack的其他内置处理程序也提出了同样的反对意见。例如Rack
使用带有Rails插件的vim,您可以创建一个迁移文件,然后一次性打开该文件吗?textmate也可以这样吗? 最佳答案 你可以使用rails.vim然后做类似的事情::Rgeneratemigratonadd_foo_to_bar插件将打开迁移生成的文件,这正是您想要的。我不能代表textmate。 关于ruby-使用VimRails,您可以创建一个新的迁移文件并一次性打开它吗?,我们在StackOverflow上找到一个类似的问题: https://sta
在选择我想要运行操作的频率时,唯一的选项是“每天”、“每小时”和“每10分钟”。谢谢!我想为我的Rails3.1应用程序运行调度程序。 最佳答案 这不是一个优雅的解决方案,但您可以安排它每天运行,并在实际开始工作之前检查日期是否为当月的第一天。 关于ruby-如何每月在Heroku运行一次Scheduler插件?,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.com/questions/8692687/