你好,我是想寫更新UIProgressbar的方法!UIProgressbar更新方法
問題是,當兩個值都很好地到達方法(NSLog顯示值) 除法操作生成bad_access當我運行應用程序!
我試過很多信息從類似的intValue/inValue兩個值...
幫我解決這個問題,我怎麼能打印的NSNumber值
-(void)UpdateProgressbar:(NSNumber *)currentOperationNumer TotalOperationNumber:(NSNumber*)n
{
NSLog(@" operation : %i",currentOperationNumer);
NSLog(@" total : %i",n);
if (currentOperationNumer<=n)
{
[downloadBar setProgress:(currentOperationNumer/n)];
NSLog(@"progress !");
}
else
{
[self.view removeFromSuperview];
}
}
沒有,這不是工作:/ – Bechir