您好,我正在尝试编写一个更新 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];
}
}