if else を使用して条件を確認していますが、常に else を実行します
int mytestcount=rowCount;
NSLog(@"My Test ROw Count IS %d",mytestcount);
if (mytestcount=0) {
NSLog("No Data To Upload");
}
else {
[Coffee getInitialDataToDisplay:[self getDBPath]];
}
私のifがtrueの場合、elseも実行します。rowCountが0の場合は理由がわかりません