谁能指导我如何做这样的事情:

我设法做了第一个和最后一个屏幕,我需要在它们之间放另一个1。

有什么我可以学习的教程吗?

非常感谢 :)

最佳答案

在screen1中:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
 {
    Screen2 *screen2 = [[Screen2 alloc]initWithNibName:.......];
    screen2.itsArray = [[NSMutableArray alloc] init];
    if(indexPath.row == 1)
       {
         screen2.itsArray = yourArrayForScreen2_FirstRow;
       }
    else if(indexPath.row == 2){
         screen2.itsArray = yourArrayForScreen2_SecondRow;
      }else{ ...... }
   [self.viewController pushViewCOntroller .....];
 }

在screen2中:
NSMutableArray * itsArray; @property和@snynthesize

现在根据需要使用itsArray。在screen2中,对screen3进行与screen1中相同的操作

07-28 03:31