Posts by vitormm • 131 points
2 posts
-
2
votes1
answer52
viewsA: What’s wrong with the code below?
To print an integer you should use %d, not %i, as well as C. In this case your print should look like this: NSLog(@"%d/%d", numerator, denominatior);
objective-canswered vitormm 131 -
1
votes1
answer53
viewsA: Make GET request through a Webview
I have a function for these cases. You need to convert the text of the values of the GET call to the so-called Percent Encoding, but the characters '&' and '?' are not included in this…