簡體   English   中英

prepareForSegue比較數組和字典中的值

[英]prepareForSegue comparing values from array and dictionary

我需要編碼我的prepareForSegue:幫助prepareForSegue:

這個TeamObject擁有一個teamID值,可以是55 ... 65 ... teamID

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

    static NSString *CellIdentifier = @"StandingsIdent";

    StandingsViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

    TeamObject *item = [tableData objectAtIndex:[indexPath row]];

    long row = [indexPath row];

        if ([item isKindOfClass:[TeamObject class]]) {

            cell.cellTeamName.text = item.teamName;
            cell.cellTeamLogo.image = item.teamLogo;
            cell.cellPlayed.text = item.matchesPlayed;
            cell.cellWins.text = item.wins;
            cell.cellTies.text = item.ties;
            cell.cellLoses.text = item.loses;
            cell.cellPoints.text = item.points;
            cell.cellTeamPosition.text = _teamPosition[row];
            cell.cellInfo.text = _infoLeague[row];
        }

        else {

        }

我的viewDidLoad有一些字典,這些字典保存每個對象的鍵:

- (void)viewDidLoad {

    [super viewDidLoad];


    _testThis = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                    @"2", @"1478.png",
                    @"3", @"1487.png",
                    @"4", @"1489.png",
                    @"5", @"1494.png",
                    @"6", @"1474.png",
                    @"7", @"2390.png",
                    @"8", @"2433.png",
                    @"9", @"1488.png",
                    @"10", @"1481.png",
                    @"11", @"2383.png",
                    @"12", @"1476.png",
                    @"13", @"1495.png",
                    @"14", @"729500.png",
                    @"15", @"2386.png",
                    @"16", @"2445.png",
                    @"17", @"2393.png",
                    nil];

現在我需要我的prepareForSegue來執行此邏輯,如果teamId中的TeamObject匹配字典中的團隊ID,則發送信息槽...

我使用的編碼方式是靜態的,我的團隊每天都會更改職位,因此我需要此命令才能知道他在顯示其他信息時正在做什么。

-(void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
    if([[segue identifier] isEqualToString:@"teamDetailsSeg"]){


        TeamDetailsTableViewController *detailViewController = [segue destinationViewController];

        NSIndexPath *myIndexPath = [self.tableView indexPathForSelectedRow];
        long row = [myIndexPath row];

        if ([TeamObject o

        detailViewController.teamDetailModel = @[_teamFullNames[row], _teamLogos[row], _teamStadiumPictures[row], _teamStadiumNames[row], _stadiumCapacity[row], _stadiumBuiltYear[row], _clubFoundationDate[row], _teamCity[row], _clubPresident[row], _headCoach[row], _championshipsWon[row], _domesticCupsWon[row], _domesticLeagueCupsWon[row], _domesticSuperCupsWon[row], _championsleaguesWon[row], _europaleaguesWon[row], _europeanSuperCupsWon[row], _worldclubchampionshipsWon[row]];
    }
}

這是我的ExtraDetailsViewController的代碼,一切正常,但它是靜態的,因此,如果明天第一名的團隊ExtraDetailsViewController第二名,則額外的額外數據將不正確。

- (void)viewDidLoad
{
    [super viewDidLoad];

    _cellFullTeamName.text = _teamDetailModel[0];
    _cellTeamLogo.image = [UIImage imageNamed:_teamDetailModel[1]];
    _cellTeamStadium.image = [UIImage imageNamed:_teamDetailModel[2]];
    _cellStadiumName.text = _teamDetailModel[3];
    _cellStadiumCapacity.text = _teamDetailModel[4];
    _cellStadiumYear.text = _teamDetailModel[5];
    _cellClubYear.text = _teamDetailModel[6];
    _cellStadiumCity.text = _teamDetailModel[7];
    _cellPresident.text = _teamDetailModel[8];
    _cellCoach.text = _teamDetailModel[9];
    _cellDomesticChampionships.text = _teamDetailModel[10];
    _cellDomesticCups.text = _teamDetailModel[11];
    _cellDomesticLeagueCups.text = _teamDetailModel[12];
    _cellDomesticSupercups.text = _teamDetailModel[13];
    _cellChampionsLeagues.text = _teamDetailModel[14];
    _cellEuroLeagues.text = _teamDetailModel [15];
    _celLEuroSuperCups.text = _teamDetailModel[16];
    _cellIntertoto.text = _teamDetailModel [17];


}

有人可以幫忙嗎?

謝謝。

TeamObject *item = [tableData objectAtIndex:row]; 

if([_testThis valueForKey:item.teamID]{
            //send data through 
    }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM