私のtableViewコードがあり、コストセルを使用しています:
- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *IOsCell = @"IOsCell";
IOsCellViewController *cell = [tableView dequeueReusableCellWithIdentifier:IOsCell];
if ( cell == nil )
{
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"IOsCellViewController" owner:self options:nil];
cell=[nib objectAtIndex:0];
}
私のcostom cellビューにはいくつかのラベルがあります:
私が苦労している部分は、写真のように見えるだけです。
UITableView の下部には、セル ビューがあります。
これがどのように起こったのか、これを修正する方法がわかりません。
私は十分に明確であることを願っています。どんな助けでも大歓迎です。
ありがとう。