vote up 1 vote down star
1

Hello,

I'm learning Objective-C and already know many other languages, but every time that i try to develop GUI applications i stuck, because i didn't understand and mental visualize the application running and those coordinates of the buttons and the other objects always let me confused, but where i can learn how to do good GUI applications using only my codes(without any type of IDE)? Thanks.

flag

I didn't know if i choose the right words to describe my question, but every question about it please comment. Thanks – Nathan Campos Oct 25 at 21:50
Are you familiar with the event (message) driven architecture? See for example msdn.microsoft.com/en-us/library/… – Nick D Oct 25 at 22:03
1  
In my opinion, good GUI applications do not position elements using coordinates. – ntd Oct 25 at 22:08
@Nick D: Not much familiar. – Nathan Campos Oct 26 at 15:54

2 Answers

vote up 1 vote down check

I suggest starting small and working your way up. Start off writing a simple Unit converter application with a GUI. Then maybe try something bigger like a minimal text editor (Open, edit the text, and save back out), and go from there.

Also, if you have a certain kind of application you really like, use it as an example and try to think how its developer made it. The great thing about Cocoa apps on the Mac is you can usually open up the actual interface files the application uses (right-click the Application bundle and select "Show Contents", navigate in there until you find .xib or .nib files, which usually can be opened by Interface Builder). Poke around in those to get an idea of how the apps work.

Finally, when you start building your applications (big or small) I highly suggest doing paper mockups. While using a tool on a computer is great, a blank sheet of paper has much less to get in your way. It's essentially your imagination and the paper. Start with a big rectangle (your Window) and draw in the interface. You'll get a feel of how things relate spatially. Don't focus too much on making the mockups pretty or detailed, but do focus on flow of the application and how you'd want it to be used.

link|flag
Thanks for your very nice tips too. ;) – Nathan Campos Oct 25 at 22:20
1  
You're welcome. – jbrennan Oct 25 at 22:43
vote up 1 vote down

I suggest you start "thinking" about the application before actually developing it. How to navigate and access its functionalites from the end user's perspective, by doing wireframes / mockups. Use tools such as balsamiq mockup for that (here are many other similar tools).

In the end, what you really want to do is look at the usability, and develop an approach to development that puts the end-user in the center of the creative process. There are some excellent free resources out there. My favourites are: http://www.uxmatters.com/ and this book and blog Designing Web Interfaces

link|flag
Huh, that's very good tips and resources. Thanks. – Nathan Campos Oct 25 at 21:59
added some more resources, food for thought :) – pixeline Oct 26 at 19:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.