4

=>我知道,这是个愚蠢的问题,但这对于像我这样的新 iPhone 开发者来说更​​重要。

在这里,我有与UITableView 部分相关的问题:

第一个问题:我有一个问题,我如何从多个部分开始我的 UITableView 部分,编号为 0?

例如 :

UITableViewnumberOfSectionsInTableView委托方法中有 11 个部分,我的部分首先从第 11 个部分开始,然后是 0、1、2、3、4、5、6、7、8、9 和 10。所以我该如何开始我的部分编号为 0 编号,然后按原样。

第二个问题:titleForHeaderInSection委托方法中,我的 tableView 的所有部分都重复了 3 次。并且在当前 ViewController 我向上或向下滚动 UITableView 然后部分显示正常(0 到 11 ) UITableView 的这个正常部分在重复部分 3 次后显示。

例如 :

NSLog (@" %d ", section );titleForHeaderInSection委托方法中使用,然后在控制台中显示如下

控制台输出:

2012-09-17 12:27:47.424 Quotes2You[1623:f803]  11 
2012-09-17 12:27:47.426 Quotes2You[1623:f803]  11 
2012-09-17 12:27:47.427 Quotes2You[1623:f803] 11
2012-09-17 12:27:47.428 Quotes2You[1623:f803]  0 
2012-09-17 12:27:47.429 Quotes2You[1623:f803]  0 
2012-09-17 12:27:47.429 Quotes2You[1623:f803] 0
2012-09-17 12:27:47.430 Quotes2You[1623:f803]  1 
2012-09-17 12:27:47.431 Quotes2You[1623:f803]  1 
2012-09-17 12:27:47.431 Quotes2You[1623:f803] 1
2012-09-17 12:27:47.432 Quotes2You[1623:f803]  2 
2012-09-17 12:27:47.433 Quotes2You[1623:f803]  2 
2012-09-17 12:27:47.433 Quotes2You[1623:f803] 2
2012-09-17 12:27:47.434 Quotes2You[1623:f803]  3 
2012-09-17 12:27:47.435 Quotes2You[1623:f803]  3 
2012-09-17 12:27:47.436 Quotes2You[1623:f803] 3
2012-09-17 12:27:47.436 Quotes2You[1623:f803]  4 
2012-09-17 12:27:47.437 Quotes2You[1623:f803]  4 
2012-09-17 12:27:47.438 Quotes2You[1623:f803] 4
2012-09-17 12:27:47.438 Quotes2You[1623:f803]  5 
2012-09-17 12:27:47.439 Quotes2You[1623:f803]  5 
2012-09-17 12:27:47.439 Quotes2You[1623:f803] 5
2012-09-17 12:27:47.440 Quotes2You[1623:f803]  6 
2012-09-17 12:27:47.441 Quotes2You[1623:f803]  6 
2012-09-17 12:27:47.462 Quotes2You[1623:f803] 6
2012-09-17 12:27:47.463 Quotes2You[1623:f803]  7 
2012-09-17 12:27:47.464 Quotes2You[1623:f803]  7 
2012-09-17 12:27:47.465 Quotes2You[1623:f803] 7
2012-09-17 12:27:47.466 Quotes2You[1623:f803]  8 
2012-09-17 12:27:47.466 Quotes2You[1623:f803]  8 
2012-09-17 12:27:47.467 Quotes2You[1623:f803] 8
2012-09-17 12:27:47.472 Quotes2You[1623:f803]  9 
2012-09-17 12:27:47.476 Quotes2You[1623:f803]  9 
2012-09-17 12:27:47.478 Quotes2You[1623:f803] 9
2012-09-17 12:27:47.480 Quotes2You[1623:f803]  10 
2012-09-17 12:27:47.481 Quotes2You[1623:f803]  10 
2012-09-17 12:27:47.481 Quotes2You[1623:f803] 10
2012-09-17 12:27:47.487 Quotes2You[1623:f803]  0 
2012-09-17 12:27:47.487 Quotes2You[1623:f803]  1 
2012-09-17 12:27:47.489 Quotes2You[1623:f803]  2 

首先这个重复所有部分 3 次,然后当我滚动 UITableView 然后部分从 0 开始(正常)

我的代码在这里:

第三视图控制器.h

@interface ThirdViewController : UIViewController<UITableViewDataSource, UITableViewDelegate>
{
       UITableView *tblCustomer;
        NSArray *listOfsection;
}
@property (nonatomic,retain) UITableView *tblCustomer;
@property (nonatomic,retain) NSArray *listOfsection;

@end

第三视图控制器.m

@synthesize tblCustomer , listOfsection;

- (void)viewDidLoad
{
    [super viewDidLoad];

     self.tblCustomer = [[UITableView alloc] initWithFrame:CGRectMake(0,0,320,417) style:UITableViewStyleGrouped];
    self.tblCustomer.delegate = self;
    self.tblCustomer.dataSource = self;
    [self.view addSubview:self.tblCustomer];

    self.listOfsection = [[NSArray alloc]  initWithObjects:@"Name", @"Company", @"Address", @"Email", @"Mobile", @"Phone", @"Potential", @"Sales Status", @"Genre", @"Distributor", @"Dist Rep", @"Internal Notes", nil];

}

#pragma mark - UITableView Datasource Methods

- (NSInteger)numberOfSectionsInTableView:(UITableView *)aTableView {
    return [self.listOfsection count];
}

- (NSInteger)tableView:(UITableView *)aTableView numberOfRowsInSection:(NSInteger)section
{
    int numSection=0;

      if (section == 2)
        numSection = 5;
    else
        numSection = 1;

    return numSection;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
        // here is my code cellForRowAtIndexPath as section wise 
}

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    NSLog(@" %d ", section);
     NSString *sectionHeader = nil;

    sectionHeader = [self.listOfsection objectAtIndex:section];

    // here is section overwrite //

      return sectionHeader;
}

#pragma mark - Memory Management

-(void)dealloc
{
    [super dealloc];

    [self.listOfsection release];
    [self.tblCustomer release];
}

提前致谢

4

3 回答 3

2

你问:

第一个问题:我有一个问题,我如何从多个部分开始我的 UITableView 部分,编号为 0?

我认为您的惊愕源于这样一个事实,即这些不是以严格的顺序方式调用的。这就是它的工作方式,你无法改变这种行为。显然,您的部分在应用程序中以正确的顺序出现,但它们只是碰巧没有按顺序调用。这就是事件驱动编程的本质。但是,我在您的代码中没有看到任何基于此执行顺序的中断,但是您的代码中可能有一些您没有包含在此处的内容需要严格按顺序调用这些方法,如果是这样,您将必须重构该代码。但是我在上面的代码片段中没有看到类似的东西。的性质UITableViewDataSource委托方法意味着您可以(并且应该)以不依赖于调用单元格或部分的顺序的方式编写您的方法。永远不要依赖 UI 中的事件序列来控制如何构建视图的底层模型。

第二个问题:在titleForHeaderInSection 委托方法中,我的tableView 的所有部分都重复了3 次。并且在当前 ViewController 我向上或向下滚动 UITableView 然后部分显示正常(0 到 11 ) UITableView 的这个正常部分在重复部分 3 次后显示。

如果它被连续调用 3 次,我会感到惊讶。我敢打赌(特别是考虑到您的日志显示格式略有不同的NSLog语句的证据)您的代码中的某个地方还有其他NSLog语句。我会尝试将您的NSLog陈述更改为:

NSLog(@"%s section=%d", __FUNCTION__, section);

这样,(a)您知道它是从哪个方法记录的;(b) 通过"section="在格式化字符串中添加描述性,这意味着如果您永远不会对正在记录的数字感到困惑。我敢打赌,这三个NSLog陈述并非全部来自您的titleForHeaderInSection. 就个人而言,我不再NSLog在没有引用的情况下将语句放在我的代码中__FUNCTION__,因为很容易混淆是什么生成了什么NSLog语句。

但即使titleForHeaderInSection被多次调用,那又如何呢?iOS 已经在幕后进行了优化,可以做各种各样的事情。titleForHeaderInSection了解正在发生的事情对我们有好处(例如,确保您不会做一些愚蠢的事情,比如在,而我们没有。(并且调用的顺序和数量UITableViewDataSource是我们无法控制的事情之一。)只要您不是对方法的冗余调用(例如进行不必要的reloadData调用)的来源,我就不会担心.

总而言之,虽然如果titleForHeaderInSection连续调用 3 次我会感到惊讶,但不要指望它只被调用一次。我认为表格视图可能会为表格的每个部分调用一次(可能会执行一些操作,例如计算整个表格的高度,以便适当调整滚动条的大小),然后再为屏幕上可见的部分调用一次(实际显示部分标题)。

于 2012-09-17T14:13:39.847 回答
0
-(NSInteger)numberOfRowsInTotal
{

  NSInteger sections = self.numberOfSections;
  NSInteger cellCount = 0;
  for (NSInteger i = 0; i < sections; i++) 
 {
    cellCount += [self numberOfRowsInSection:i];
 }

return cellCount;
 }
于 2012-09-17T10:54:51.270 回答
0

这不是正确的方法,但您可以使用下面的代码并且它的工作完美。

[self reloadDataWithCompletion:^{
            communityFoundIndex = [[NSMutableArray alloc]init];
            NSRange range = NSMakeRange(0, 1);
            NSIndexSet *section = [NSIndexSet indexSetWithIndexesInRange:range];
            [self.myTbl reloadSections:section withRowAnimation:UITableViewRowAnimationNone];
        }];

- (void) reloadDataWithCompletion:( void (^) (void) )completionBlock {
    [_tblCommunity reloadData];
    if(completionBlock) {
        completionBlock();
    }
}
于 2017-05-25T14:15:51.217 回答