|
|
Stories recently tagged with 'ObjectiveC'
|
|
published 5 months, 16 days ago, submitted by
coreyf
5 months, 23 days ago
theflyingjalapenolives.com — An article with several resources to help you learn about the Objective-C runtime. read more...
add a comment
|
category: Objective-C | Views: 61
|
|
tags:
ObjectiveC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 7 months, 6 days ago, submitted by
ronwisley
7 months, 6 days ago
howtomakeiphoneapps.com — You will encounter two kinds of variables when working with Objective-C. Objects such as the UIAlert and simple types like integers and doubles. These things can cause some confusion because they follow different rules even though they are used in similar ways. read more...
add a comment
|
category: Objective-C | Views: 41
|
|
tags:
ObjectiveC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 7 months, 5 days ago, submitted by
Ivan
7 months, 8 days ago
inchoo.net — If you want to ensure best user experience for your app users you just must integrate this two API in your app. First of two is Get Satisfaction iPhone API. Satisfaction Remote Component enables iPhone developers to embed support for Get Satisfaction within their apps. read more...
add a comment
|
category: Objective-C | Views: 157
|
|
tags:
ObjectiveC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 7 months, 6 days ago, submitted by
Ivan
7 months, 9 days ago
inchoo.net — I know you will now say there is “Reachability” named sample app at developer connect library to download, but it ain’t what I am looking for. What I am looking for is feature that will tell me do I have internet connection while I have network connection, to be more accurate, do I have internet connection... read more...
add a comment
|
category: Objective-C | Views: 108
|
|
tags:
ObjectiveC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 7 months, 8 days ago, submitted by
MattjDrake
7 months, 14 days ago
howtomakeiphoneapps.com — Having you been playing around with Objective-C for a while now but you feel like you just don’t get it?
It may well turn out that the problem with learning Objective-C is not the programming language itself. Part of the problem is that you are not just dealing with Objective-C, but also with C and C++; the Cocoa-Touch framework and XCode are probably all new to you. read more...
add a comment
|
category: Objective-C | Views: 60
|
|
tags:
ObjectiveC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 7 months, 10 days ago, submitted by
MattjDrake
7 months, 14 days ago
howtomakeiphoneapps.com — Are you a C# or Java programmer who is trying to take the plunge into the iPhone/Mac development world?
That was me too a little over a year ago; I tried my hand at Objective-C thinking it would be a snap since I was already so proficient at C# and the whole family of .NET products. Plus, Steve Job’s presentation about XCode made programming for the iPhone seem so easy and sexy.
How Different Could Objective-C Really Be?
If you are interested in reading this it is because you probably already know that it is VERY different. It seems like it shouldn’t be: the iPhone is essentially a client technology, Objective-C is an object-oriented programming language and Cocoa-Touch is simply a framework.
This week I am going to be a talking about Objective-C what tips you need to know about the language. Because even though the videos make it all look easy with the syntax coloring, the shiny XCode IDE and the Steve Jobs halo effect learning how to work with Objective-C can be very disorienting for newbies. In particular, it is disorienting for people who already know a programming language.
It is a also a very rewarding experience to work with Objective-C once you get the hang of it – so keep with it!
And Then There Are the Square Brackets
This is probably the one thing that scare people off the most about Objective-C. Here is an example of something you would do using the square brackets of Objective-C:
[alert displayWithThisMessage:@"I say this!"];
Look at the above statement very closely. In C# (and I think Java) it would look something like this:
Alert.DisplayWithThisMessage("I say this!");
This difference seems minor when you are looking at it in a blog entry – it is when you are hacking on it at 3AM and attempting to use nested methods that it messes with your head.
Here Are the Pieces of Syntax
Again, consider the statement:
[alert displayWithThisMessage:@"I say this!"];
A Line of Code
The first thing you should notice is that the entire statement is surrounded in square brackets ([,]) and the line of code ends with a semi-colon (;).
Enter the Object Stage Left
The next thing is the object; Objective-C is a very object-oriented language and when you are dealing purely with Objective-C you can assume everything is an object. The object in this statement is alert.
The Method is the Message!
In Objective-C you will not be calling an object’s method, but you will be sending a message to an object. This has read more...
add a comment
|
category: Objective-C | Views: 30
|
|
tags:
ObjectiveC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 7 months, 27 days ago, submitted by
MattjDrake
8 months, 1 day ago
howtomakeiphoneapps.com — When I say “is your source code protected”, I really mean from YOU!
Sometimes when you are working on your code you have a great idea and to implement it you have to change a ton of files. If you are working with others they may decide to do the same thing. This is all fine and dandy until it ISN’T and your app will not run anymore! read more...
add a comment
|
category: Objective-C | Views: 48
|
|
tags:
ObjectiveC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 8 months, 2 days ago, submitted by
MattjDrake
8 months, 3 days ago
howtomakeiphoneapps.com — How to Use Dictionaries
Like an array, a dictionary is a list of objects. However, dictionaries make it
easier to organize data by providing “keys” that make it a snap to find the
things you put in there. These are sometimes referred to as a hash or a
hash-table. read more...
add a comment
|
category: Objective-C | Views: 80
|
|
tags:
ObjectiveC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 8 months, 3 days ago, submitted by
kannan
8 months, 9 days ago
icodeblog.com — This is going to be the first in a series of screencasts that are focused at people just beginning to work with Objective C and Cocoa. For many reasons the beginnings of learning cocoa development can be frusterating and lonely to a point. Only now is Objective C and Cocoa development gaining the kind of momentum to drive the creation of resources such as iCodeBlog and others. read more...
add a comment
|
category: Objective-C | Views: 71
|
|
tags:
Newbie, ObjectiveC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 8 months, 9 days ago, submitted by
Ivan
8 months, 7 days ago
inchoo.net — This is quite simple, infact it is one row code like everything else in iPhone development. Well, not everything is “quite” simple as this but most of stuff is “quite” easy to implement. Enough with “quite” ! Here is really simple code; read more...
add a comment
|
category: Objective-C | Views: 66
|
|
tags:
ObjectiveC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 8 months, 19 days ago, submitted by
Ivan
8 months, 22 days ago
inchoo.net — If you did not understand from the post title what I am trying to say, here is another explanation. If you have an instance of UIWebView class implemented in your view and you want to call one of your custom method when user clicks on link in that UIWebView instance, first thing you must do to achieve that is set the delegate of that... read more...
add a comment
|
category: Objective-C | Views: 56
|
|
tags:
ObjectiveC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
Published:

Upcoming:

|