0

我有从 Apple 采用的可达性课程。我的问题是在我的 ListViewController 中而不是在 Apple 中显示的 ReachabilityAppDelegate 中实现我的可达性检测。我的问题:

  1. 我想链接 (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 中的调用方法和可达性检测

  2. 如果他们检测到它未连接,我将尝试禁用我的单元,如果已连接则启用该
    单元

这是在 viewDidLoad 中编码的:

   [[NSNotificationCenter defaultCenter] addObserver: self selector:@selector(reachabilityChanged:) name:kReachabilityChangedNotification object: nil];

可达性改变如下:

-(void) reachabilityChanged: (NSNotification* )note{
  Reachability* curReach = [note object];
  NSParameterAssert([curReach isKindOfClass:[Reachability class]]);
  [self updateInterfaceWithReachability: curReach];
}

如何实现禁用 UITableViewCells

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
  • 请注意,我已在上述方法中对此进行了编码:

    NSInteger row = [indexPath row];
        NSString *contentForThisRow = nil;
    
        static NSString *MyIdentifier = @"MyIdentifier";
    
        if (tableView == [[self searchDisplayController] searchResultsTableView]) {
            // Sort search results in alphabetical order
            NSArray *sorted = [searchResults sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)];
            contentForThisRow = [sorted objectAtIndex:row];
        }else {
            contentForThisRow = [nameArray objectAtIndex:row];
        }
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier];
    
            if (cell == nil) {
                cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:MyIdentifier]autorelease];
            }
            // Set Device names into Cells
            cell.textLabel.text = contentForThisRow;
            cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    NSLog(@"Load cell done");
    

    }

4

1 回答 1

0

BOOL _isOffline 你可以像这样编码,在类和你的updateInterfaceWithReachability:方法中添加一个实例变量

- (void)updateInterfaceWithReachability:(Reachability* )curReach
{
    if(curReach == XXXXNotReachable)
    {
        //your code
        _isOffline = YES;
    }
    else
    {
        _isOffline = NO;
    }
    [_tableView reloadData];
}

在你的-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

你应该添加你的代码来处理单元格,可能是

if(_isOffline)
{
    cell.userInteractionEnabled = NO;
}
else
{
    cell.userInteractionEnabled = YES;
}
于 2013-01-23T06:41:47.730 回答