iPhoneアプリのDBからデータを取得していますが、「価格」列から最大数を取得したいのですが、このコードが機能しません
for(int *i=0; i <= [Rows count]; i++){
Dict = [Rows objectAtIndex:i];
if([[Dict objectForKey:@"Price"]intValue] > MaxNum){
MaxNum = [[Dict objectForKey:@"Price"]floatValue];
}
}