-(void) reduce
{
int u = numerator;
int v = denominator;
int temp;
while (temp !=0) {
temp = u % v;
u = v;
v = temp;
}
numerator /=u;
denominator /=v;
}
I ve got the problem when I tried to do asynchronous requests to server from background thread. I ve never got results of those requests. Simple example which shows the problem: @protocol ...