I made my first iPhone app in about two days. it is for babies ages 0-1. the user touches the buttons with animals on them and the phone plays the sounds of that animal. Baby Farm Animalz on iTunes
I have downloaded the sdk several months ago and a newer version came out. I was wondering if there was a easy was to upgrade or if I need to delete my current sdk or if when I download the new one if it will overwrite my current. Plz help thanks in advanced.
Good tutorial to start learn Objective-C!!! Thank.
I thing slide about initialization is not quite correct. int anInteger;
Is not an initialization (at least not explicit).
So it is quite interesting if the variable will be initialized by default (with 0, for example) or not. And if the behavior depends on the variable declaration place or not (global, locate, etc).
@panadesu I dunno if you still need to know this but for programming, saying anInteger lets people know its two words. an Integer. As apposed to aninteger which would be read as one word. aninteger. Like iAmGoingToEat lets people know that you are saying i am going to eat.
@TheRoki112358 yeah, whole numbers are not negative numbers. Technically in math, they are not positive nor negative, but in terms of programming they are just positive numbers. So yeah i know waht im talking about.
@SaviorTOP I don't know if I misunderstood you but in mathematics a whole number (Z) can be a positive number or negative number (N). In programming also is in that way, you can define (in C for example)
int x = -20;
int y = 20;
printf(" x = %d, y = %d", x, y);
and it's all ok. As you can see can be positive and negative. I don't know what you mean when you say that "in programming whole number are only positive". Regardless is in math way or programming way a whole number is a whole number.
@SaviorTOP Maybe the confusion is consider the word "whole" number. I consider that a whole number is an integer number, but in fact it depends on each to define it.
In my country, the literal translation of whole number is integer... this is why I assume that the definition of whole number is clear.
@TheRoki112358 whole numbers are neither positive nor negative... you can look it up. They are just numbers that represent a whole. But obviously this is not a big deal since the compiler doesnt care about any of this shit.
thanks man!! im still learning regular c which makes this a lot easier, like what i really need is the differeces between the syntax from c to objective c but i understand integers and statements and stuff.
like the differences like NSLog(@"") and printf("")
but im SURE that will be in later videos so thanks in advance
the bool type is Objective-C is capitalized because C originally never had a bool type so it was added in Objective-C as BOOL and also the values it takes are YES or NO, not true or false. Nice videos, I am learning objective c now and so I read about the BOOL type recently and wanted to point that out, thanks for the video
AMAZING VIDEOS!!! Please don't quit, this is really helpful for anyone that wants to learn programing. I've been searching for a good video and this is it THE BEST CHANNEL TO LEAR OBJECTIVE C and more! Thank you so much!
You have a lot of patience and that helps a lot to understand the lessons.
A Boolean takes a bit, you idi*t!!! 8 bits = 1 byte... "like super fast app using a char for representing true/false" ???
panchilo83 3 weeks ago
I made my first iPhone app in about two days. it is for babies ages 0-1. the user touches the buttons with animals on them and the phone plays the sounds of that animal. Baby Farm Animalz on iTunes
MajorCommunications 1 month ago
Wow!!!!!!I never thought that learning objective c would be that difficult
akaalawadhi 1 month ago
Very good tutorials. Thanks so much for the lessons!!
jairojvilla 4 months ago
I have downloaded the sdk several months ago and a newer version came out. I was wondering if there was a easy was to upgrade or if I need to delete my current sdk or if when I download the new one if it will overwrite my current. Plz help thanks in advanced.
macrevieweru 6 months ago
Using Xcode 4 or Xcode 3?
TechThoughts 7 months ago in playlist Objective-C Tutorials
@TechThoughts I've been using Xcode 3 in all of the lessons so far, but starting in the next one I will be using Xcode 4.
macandcomputerhelp 7 months ago
how long do you think it would take to learn objective C and build a app? if your really dedicated?
ilovetodraw555 7 months ago
@ilovetodraw555 Depends on what you want to do. The more complex the more knowledge you need.
Freeze00201 2 months ago
Subscribed after the first video. Thank You soo much. :D
GLappDevelopments 7 months ago
@GLappDevelopments Awesome! Glad to hear that your enjoying them.
macandcomputerhelp 7 months ago
wow! great tutorial, keep teaching! thanx.
kiduel 8 months ago
i like how the number of views wanes as you get further into the tutorial because people give up
banosFAME 8 months ago 5
Enybody know how to create skinnable interface on XCode for MacOS? Or where can I read about subj?
CPA4KA 9 months ago in playlist Nov3
Good tutorial to start learn Objective-C!!! Thank.
I thing slide about initialization is not quite correct. int anInteger;
Is not an initialization (at least not explicit).
So it is quite interesting if the variable will be initialized by default (with 0, for example) or not. And if the behavior depends on the variable declaration place or not (global, locate, etc).
kbereznDev 9 months ago
Holy crap!!! Amazing tutorial, very clear and easy to understand. I suscribed after watching the second video of this tutorial.
neoedwards9828 10 months ago 3
@neoedwards9828 Haha, thanks!
macandcomputerhelp 9 months ago
Yeah, really great video. Thanks for posting
aselzer 11 months ago
Yeah, really great video. Thanks for posting
aselzer 11 months ago
Why anInterger, and not just aninterger?
panadesu 11 months ago
@panadesu I dunno if you still need to know this but for programming, saying anInteger lets people know its two words. an Integer. As apposed to aninteger which would be read as one word. aninteger. Like iAmGoingToEat lets people know that you are saying i am going to eat.
mortl8324 10 months ago
@mortl8324 Thanks for the help, much appreciated :)
panadesu 10 months ago
This is exactly the types of tut's i've been looking for
Thank you! =D
itilijen 11 months ago
This has been flagged as spam show
Thanks.. In Spanish... please.. jejejeje
zamoray123 11 months ago
Thansks... in spanish please.... :-)
zamoray123 11 months ago
Are these slides downloadable? Are videos too or we need a youtube downloader to get them. Great work to the creator.
kaltsinho 1 year ago
Thank you very much! I'm switching from Delphi/Pascal to Mac tools and your videos are helping me a lot!
mepsites 1 year ago
THANK YOU FOR BEING ALIVE!
shadow7guardian7 1 year ago
int is not just a whole numbers, because by whole numbers you are only saying that it can be a positive number when int can be a negative number
SaviorTOP 1 year ago
@SaviorTOP Do you really know what is a whole number???
TheRoki112358 1 year ago
@TheRoki112358 yeah, whole numbers are not negative numbers. Technically in math, they are not positive nor negative, but in terms of programming they are just positive numbers. So yeah i know waht im talking about.
SaviorTOP 1 year ago
@SaviorTOP I don't know if I misunderstood you but in mathematics a whole number (Z) can be a positive number or negative number (N). In programming also is in that way, you can define (in C for example)
int x = -20;
int y = 20;
printf(" x = %d, y = %d", x, y);
and it's all ok. As you can see can be positive and negative. I don't know what you mean when you say that "in programming whole number are only positive". Regardless is in math way or programming way a whole number is a whole number.
TheRoki112358 1 year ago
@SaviorTOP Maybe the confusion is consider the word "whole" number. I consider that a whole number is an integer number, but in fact it depends on each to define it.
In my country, the literal translation of whole number is integer... this is why I assume that the definition of whole number is clear.
TheRoki112358 1 year ago
@TheRoki112358 whole numbers are neither positive nor negative... you can look it up. They are just numbers that represent a whole. But obviously this is not a big deal since the compiler doesnt care about any of this shit.
SaviorTOP 1 year ago
bool is 1bit 0 or 1.
ignas2526 1 year ago
Excellent content.
The link to next tutorial is right on the fast forward bar, so I hit that accedentally. please move the link higher, thanks.
David
ryzhenkov 1 year ago
thanks man!! im still learning regular c which makes this a lot easier, like what i really need is the differeces between the syntax from c to objective c but i understand integers and statements and stuff.
like the differences like NSLog(@"") and printf("")
but im SURE that will be in later videos so thanks in advance
asfadasfa1234 1 year ago
the bool type is Objective-C is capitalized because C originally never had a bool type so it was added in Objective-C as BOOL and also the values it takes are YES or NO, not true or false. Nice videos, I am learning objective c now and so I read about the BOOL type recently and wanted to point that out, thanks for the video
platnumnutz276 1 year ago
AMAZING VIDEOS!!! Please don't quit, this is really helpful for anyone that wants to learn programing. I've been searching for a good video and this is it THE BEST CHANNEL TO LEAR OBJECTIVE C and more! Thank you so much!
You have a lot of patience and that helps a lot to understand the lessons.
THANK YOU!
4gamerslikeu 1 year ago 20
You're off on the integer size by one! Making my own tutorials for C#, just had to point that out.
Gandind 1 year ago
is it possible for u to send me all ur like power point thingy u use?, then i can study them
MrJonnyrocks 1 year ago
thank you sooo much
MrJonnyrocks 1 year ago
Good job man. Keep it up!
RonjaRT 1 year ago
thank you for your vids. waiting for the rest =D
joxxen 2 years ago
You're much more clear than any other tutorial I've ever seen or read!
tbvdb 2 years ago 19
definitely
YouveGotFailTV 2 years ago
yeah. Seriously thanks a lot for these tutorials!
jrmovies1234321 2 years ago