Hi all,
I'm teaching myself iOS application development one thing that I have found is that often I get the message "lldb" in the debugger, none of the tutorails that I have been following seem to mention this. Am I doing something wrong is there a setting that I need to change?
An example of a piece of code that I have created:
Code Cpp:int main(int argc, const char * argv[]) { void myFunction(NSArray *array); { for(NSInteger n = 0; n < 30; n++) { NSLog(@"The value of n is:%ld\n", n); } } }
Thanks for any help.


Reply With Quote

Bookmarks