I want to be able to add one number to another. One of my numbers is an integer, the other is a string in an editable text field. The only problem I have little knowledge of Xcode and do not know the function to turn a string into an integer. Also, when I build my app, I get an error that says "warning implicit declaration of function degreesToRadians", I have no idea why it is giving me this error. Here is my code:
Where is that function defined? It's warning because there's no function declaration, but the fact that your code works means that it must be being included by a library somewhere. You probably just need to include a header file associated with that function.
__________________ Beard Booth HD - See what you'd look like with a beard today!
I want to be able to add one number to another. One of my numbers is an integer, the other is a string in an editable text field. The only problem I have little knowledge of Xcode and do not know the function to turn a string into an integer. Also, when I build my app, I get an error that says "warning implicit declaration of function degreesToRadians", I have no idea why it is giving me this error. Here is my code: