Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

thejadedmonkey

macrumors G3
Original poster
May 28, 2005
9,240
3,499
Pennsylvania
The idea is really simple: The user enters how much money they need to save, how much money they have, and a pie chart appears below along with the text of how much they still have to save.

I poked around with xcode, and now I have a GUI.. but I have no idea how to write the actual code to link the GUI to the back-end, or where the back-end code even gets written! As you can tell, I'm a n00b at xcode.

Here's what I'm asking for.
  • Where do I go to write the actual code?
  • Is there an easy way to make a pie-chart?
  • How do I link the GUI to the actual code of the program?
  • What else do you think I should know?

I've attached screen shots of what I'm trying to do, and what I have.
If this is too needy of a request, I apologize in advance. Also, if you have a good link to a tutorial that would help, I'll take that too, I just can't seem to find a good tutorial that'll transform my java abilities into xcode. :(
 

Attachments

  • Untitled-1.jpg
    Untitled-1.jpg
    58.9 KB · Views: 79
  • Picture 1.png
    Picture 1.png
    135.3 KB · Views: 78

whooleytoo

macrumors 604
Aug 2, 2002
6,607
716
Cork, Ireland.
I'm not sure if you're writing the project in Java or Objective-C, if it's Java I can't help you so I'll give you the Obj-C tips and you're on your own! :p

For this, it's important to understand IBOutlets and IBActions. IBOutlets are pointers to interface items, such as windows, views, textfields etc. IBActions are methods which are triggered by interface items, such as buttons.

Here are some steps to get you going:
- Create a new OSX, Cocoa Application project.
- Click on the Classes group, right click and select "Add>New File…"
- Select Cocoa>Objective-C class
- Give it a name (for now, try "MyWindowController")

We'll use this class to "control" the window.

- Next, open the Resources group, and open MainMenu.xib>English
- In the Library View, click on "Objects and Controllers"
- Drag an NSObject icon to your MainMenu.xib window.
- Select this NSObject, and hit Cmd-6 (to open the Identity Pane)
- In the Classes textfield, enter "MyWindowController" and press Return.

We've now created an instance of "MyWindowController", now we need to customise it:

- In the Identity Pane, click the "+" in Actions to create a new Action.
- Call it "updateUI:" for now (NOTE: you must have the colon at the end!), and press Return.
- Click the "+" in Class Outlets to create a new outlet.
- Call it "needTextField", and change its type to "NSTextField", and press Return
- Likewise, create a second textField, change its type, and call it "saveTextField".

Next, we need to create the interface:

- Drag two NSTextFields from the Library to your window. Size and name them as you wish.
- Drag an NSButton to the window, and name and size as you wish.

Now, we need to "link" the interface to the action and outlets we created earlier.

- Hold the Ctrl button, and drag from the button to the NSObject (MyWindowController) we created. A pop menu will appear, click on "updateUI:".
- Hold the Ctrl button, and drag from the NSObject to the first text field, select "saveTextField" from the popup.
- Repeat for the second textfield, but select "needTextField".

All done, we just need to tell Interface Builder to update the code files.

- Click on the object, then go to the File menu and select Write Class Files…
- If it asks you to replace or merge the files, select Replace.
- If it asks you to add the file to the project, select it and click ok.

In Xcode, you now have a class with an IBAction, and two connected IBOutlets.

When the button is clicked, the updateUI: method will run. If you want to access the text fields, you can use [saveTextField stringValue].

If you want code to execute on launch, try adding a

- (void) awakeFromNib

method to MyWindowController.m, and perform your initialisation there.

That should be enough to get you started. Good luck coding!
 

toddburch

macrumors 6502a
Dec 4, 2006
748
0
Katy, Texas
Whooleytoo, you're a better person than me. I would have stopped after saying "you need to find an Interface Builder tutorial." (as opposed to writing one!)

:)

Todd
 

5fingers

macrumors newbie
Aug 20, 2008
18
0
Thanks for the great information. I have an idea for an app was searching for information on where to start or what to do. Your post is a great starting point.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.