以下はサービスから取得する配列です。サービスからの出力を表示する際の問題Objective-C
{
ClassDays = "Monday,Tuesday,Wednesday,Thursday,Friday,Saturday";
empName = Abhinav;
Experience = "4 Years";
Attendance = Daily;
Subject = Physics;
ClassTimings = (
{
GMT = "PLUS05:30";
Time = "12:50:00";
TimeZone = "Asia/Hyderabad";
},
{
GMT = "PLUS05:30";
Time = "13:00:00";
TimeZone = "Asia/Hyderabad";
},
{
GMT = "PLUS05:30";
Time = "13:10:00";
TimeZone = "Asia/Hyderabad";
},
{
GMT = "PLUS05:30";
Time = "13:20:00";
TimeZone = "Asia/Hyderabad";
}
);
JoinedDate = "2017-003-06";
Education = M.Tech;
empId = 535;
}
私の問題は、のempNameの値を示すことができ、上記アレイの出力午前、経験、出席、件名や教育、しかしClassTimings GMT、時間、タイムゾーンを表示することができないからです。 ClassTimingsを下の配列からどのように表示できますか?以下は私が試したコードです。問題を見つけるのを手伝ってください。 TIA
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
//Some code
}
NSArray *keys = [empDict allKeys];
for(int i=0 ; i<[keys count]; i++)
{
NSString *value=[medicationDict objectForKey:[keys objectAtIndex:i]];
if ([value isEqual: [NSNull null]]) {
[empDict setValue:@"--" forKey:[keys objectAtIndex:i]];
}
}
if(indexPath.row==0)
{
cell.textLabel.text = @"EmployeeName";
cell.detailTextLabel.text=[empDict objectForKey:@"empName"];
}
if(indexPath.row==1)
{
cell.textLabel.text = @"Experience";
cell.detailTextLabel.text=[empDict objectForKey:@"Experience"];
}
if(indexPath.row==2)
{
cell.textLabel.text = @"Attendance";
cell.detailTextLabel.text=[empDict objectForKey:@"Attendance"];
}
if(indexPath.row==3)
{
cell.textLabel.text = @"Subject";
cell.detailTextLabel.text=[empDict objectForKey:@"Subject"];
}
if(indexPath.row==4)
{
cell.textLabel.text = @"Education";
cell.detailTextLabel.text=[empDict objectForKey:@"Education"];
}
if(indexPath.row==5)
{
cell.textLabel.text = @"ClassTimings";
cell.detailTextLabel.text=[empDict objectForKey:@"GMT",
@"Time",@"TimeZone"];
}
}
'ClassTimings'はあなたのセルにtableViewを追加する必要があります。 –