iPhone Programming- Xcode 4: Advanced Code Snippets.
Loading...
1,632
Loading...
Uploader Comments (MilmersXcode)
see all
All Comments (10)
-
you are great man, thank so much ^^
-
Thanks alot, great effort, it was very helpfull
-
Cool!
-
Thank you!
-
I like this tutorial
Thanks
-
Thanks ;)
Loading...
hey Milmer thx for your reaction, I have no coding knowledge ( i work now 1 week with xcode(and have the new version)), do you know someting how i can learn basic codes?
Bye, Recei
MrReceiS 2 months ago
@MrReceiS You can pick up various books from amazon on iOS Programming. Most go from the basics to really complicated stuff. Just go look, you'll find some.
As always, practice makes perfect and the more you code the more you get used to certain things and they become natural and more fluent.
Any more questions I am always here to answer them :D.
Milmer
MilmersXcode 2 months ago
hey, if I use your main code (UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Title" message:@"Message" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Other", nil]; [alert show]; [alert release];) he said: ARC forbids explicit message send of 'release'
PLease can you help me what i need the do...
(thx for vids!)
MrReceiS 3 months ago in playlist Xcode 4 Videos
@MrReceiS ARC stands for Automatic Reference Counting. In short, it does the release for you. Therefore, you don't need the line:
[alert release];
This is new in Xcode 4.2
MilmersXcode 2 months ago