Tagged Questions
0
votes
1answer
47 views
Using GCD in performSelectorInBackground: , How this action get an exception?
When I call "performSelectorInBackground" to process some action asynchronously.
My code struct is like:
[self performSelectorInBackground:@selector(AddTheAdditionalDataSourceToTableView) ...
-1
votes
1answer
145 views
Using Greatest Common Divisor for a ratio in Objective-C?
I would like to write a method in Objective-C that will result in a text string 'a:b:c:d'. I have four UISteppers (their values are displayed in a label each). I would like the ratio of those four ...
2
votes
3answers
610 views
greatest common divisor Objective-C
I am new to ios programing. I have question about the GCD program.
01 // This program finds the greatest common divisor of two nonnegative integer values
02
03 #import ...
