我已经发现了同样的问题,但答案没有帮助我:(也许是因为我有具体的问题,在安装应用程序到iPhone 4S(iOS 5中)出现了一些问题后,我已经修复他们夫妇的,但是这一次更为顽固在似乎一见钟情。
我在Xcode4打开现有Xcode3项目,这个问题出现了。
我将在这里把一些代码:
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
// Return the number of sections.
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
// Return the number of rows in the section.
return [self.townShopsArray count];
}
我查了一下:self.townShopsArray不为空
功能:
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { ...
不叫,所以我不需要在这里把它的代码。
谁能告诉我,当我升级的项目在Xcode 3 Xcode的4有什么事情出了错?