10

UITableView がリロードされないという問題がいくつかあります。アウトレットのリンクをやり直して、それが問題ではないことを確認しました。[self table] reloadData] も使用してみましたが、どちらもうまくいかないようです。私は問題をデバッグしましたが、reloadData をスキップするだけで、コードが存在しないようにアプリが実行され続けます。

私の.mファイルの上部、ViewDidLoadでは何も行われていません

#import "SettingsCourses.h"

@implementation SettingsCourses
@synthesize settingsCourses;
@synthesize Delegate;
@synthesize BackButton;
@synthesize DeleteButton;
@synthesize table;
@synthesize courses;
@synthesize dataHandler;


- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
    // Custom initialization
    dataHandler = [[DataHandler alloc] init];
    dataHandler.coursesDelegate = self;
    courses = [dataHandler fetchCourses];
    NSLog(@"Debug Count: %i", [courses count]);
}
[table reloadData];
return self;
}

- (void) viewWillAppear:(BOOL)animated {
[table reloadData];
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
if (courses) {
    NSLog(@"Count: %i", [courses count]);
    return [courses count];
}
else {
    NSLog(@"Count: 0");
    return 0;
}
}

私の .h ファイル

#import <UIKit/UIKit.h>
#import "dataHandler.h"

@interface SettingsCourses : UIViewController 

@property (strong, nonatomic) DataHandler *dataHandler;
@property (strong, nonatomic) NSMutableArray *courses;
@property (strong, nonatomic) IBOutlet UIView *settingsCourses;
@property (nonatomic, strong) id Delegate;
@property (weak, nonatomic) IBOutlet UIButton *BackButton;
@property (weak, nonatomic) IBOutlet UIButton *DeleteButton;
@property (weak, nonatomic) IBOutlet UITableView *table;


- (IBAction)Delete:(id)sender;
- (IBAction)Back:(id)sender;

助けてくれてありがとう!

4

6 に答える 6

29

次の行を追加します。

- (void)viewDidLoad {
  [super viewDidLoad];

  self.table.dataSource = self;
  self.table.delegate = self;
}

しかし、interface-build 別名 XIB ファイルでデータソースを設定する方がはるかに簡単です。

于 2012-04-14T17:26:34.980 に答える
1

これを試して

@interface SettingsCourses : UIViewController <UITableViewDelegate,UITableViewDataSource>
于 2012-04-14T17:34:44.220 に答える
0

テーブルデリゲートまたはデータソースを設定していないようです。これを行うには、unitメソッドで次のコードを追加するだけです

table.dataSource = self or wherever your data source is;
table.delegate = self:
于 2012-04-14T17:24:43.513 に答える
0

IB で UITableViewController をセットアップしましたが、そのクラス名は私が持っていた UITableViewController ファイルと一致しませんでした。ルーキー!

于 2015-11-21T21:14:53.880 に答える
0

私にとってのエラーは、私が戻ってきたことでし0func numberOfSections(in tableView: UITableView) -> Int

于 2019-01-14T08:33:42.560 に答える
0

インターフェイスビルダーでデータソースとデリゲートを切断して再接続してみることをお勧めします。IB は接続を「忘れる」ことがあります。

于 2015-06-24T13:20:55.940 に答える