-3

EmployeeInfo のカスタム クラスを作成しました。

@interface METEmployee : NSObject
@property (weak, nonatomic) NSString *EmpNo;
@property (weak, nonatomic) NSString *FirstName;
@property (weak, nonatomic) NSString *MiddleName;
@property (weak, nonatomic) NSString *LastName;
@property (weak, nonatomic) NSString *Department;
@property (weak, nonatomic) NSString *HireDate;
@property (weak, nonatomic) NSString *JobTitle;

@property (weak, nonatomic) NSString *SupervisorNumber;
@property (weak, nonatomic) NSString *SupLastName;
@property (weak, nonatomic) NSString *SupFirstName;
@property (weak, nonatomic) NSString *MobilePhone;
@property (weak, nonatomic) NSString *EmailAddress;
@property (weak, nonatomic) NSString *DeskPhone;

@property (weak, nonatomic) NSString *EmployeeType;
@property (weak, nonatomic) NSString *Location;
@end

次に、ビュー controller.h で次のように作成しました。

NSMutableArray *theemplyees;
@property(nonatomic, retain) NSMutableArray *theemplyees;

合成は .m:

@synthesize theemplyees

次に、ViewDidLoad で、init を呼び出してデータを入力します。

theemplyees = [[NSMutableArray alloc] init];
[self getEmps];  

getEmps で、レコードを配列に追加します。

        results = [database executeQuery:@"select * from EmpInfo order by LastName"];
    while([results next]) {

        METEmployee *empInfo = [METEmployee alloc];
        empInfo.EmpNo = [results stringForColumn:@"EmpNo"];
        empInfo.FirstName = [results stringForColumn:@"FirstName"];
        empInfo.MiddleName = [results stringForColumn:@"MiddleName"];
        empInfo.LastName = [results stringForColumn:@"LastName"];
        empInfo.Department = [results stringForColumn:@"Department"];
        empInfo.HireDate = [results stringForColumn:@"HireDate"];
        empInfo.JobTitle = [results stringForColumn:@"JobTitle"];
        empInfo.SupervisorNumber = [results stringForColumn:@"SupervisorNumber"];
        empInfo.SupFirstName = [results stringForColumn:@"SupFirstName"];
        empInfo.SupLastName = [results stringForColumn:@"SupLastName"];
        empInfo.MobilePhone = [results stringForColumn:@"MobilePhone"];
        empInfo.EmailAddress = [results stringForColumn:@"EmailAddress"];
        empInfo.DeskPhone = [results stringForColumn:@"DeskPhone"];
        empInfo.EmployeeType = [results stringForColumn:@"EmployeeType"];
        empInfo.Location = [results stringForColumn:@"Location"];
        [theemplyees addObject:empInfo];
    }

レコードでいっぱいの最初の画面のテーブルを作成するために、すべてが正常に機能します。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
 {
  METEmpTableViewCell *cell = (METEmpTableViewCell *)[tableView dequeueReusableCellWithIdentifier:@"myCell"];

cell.lblFirstName.text = [[theemplyees objectAtIndex:indexPath.row] valueForKey:@"FirstName"];
cell.lblLastName.text = [[theemplyees objectAtIndex:indexPath.row] valueForKey:@"LastName"];
cell.lblDepartment.text = [[theemplyees objectAtIndex:indexPath.row] valueForKey:@"Department"];

 NSString* picName = [NSString stringWithFormat:@"%@.jpg", [[theemplyees objectAtIndex:indexPath.row] valueForKey:@"EmpNo"]];
@try {
    cell.empPicture.image = [UIImage imageNamed:picName];
}
@catch (NSException *exception) {

}
@finally { 
}

return cell;

}

しかし、Tableview を上下にスクロールしようとすると、配列はデータが null であると表示しますが、レコード数は表示されます。テーブルのセルのサイズを小さくすると、より多くの行 (表示されている行) が入力されますが、もう一度スクロールすると行がなくなります。

どんな考えや提案も大歓迎です。事前にすべての助けに感謝します!

ジオ...

4

1 に答える 1

2

すべての文字列が保持されていないため、すべての文字列が即座に割り当て解除されることを意味する弱いプロパティがあります。これに変更して試してください:

@property (nonatomic, strong) NSString *theString;

また、次のように NSMutableArray を初期化する必要があります (init メソッドがありません)。

NSMutableArray *array = [[NSMutableArray alloc] init];
于 2013-03-30T00:34:50.020 に答える