I want to link the menu items to either my forum or a html document that or another view screen with info on it but I have no idea how to do that. I included a screenshot of what I want to work on.
The standard paradigm for Mac Apps is to link menu items to Actions in either the Application Delegate object or, more likely, a Controller object. Then the Controller would perform the tasks needed to create new Views and Views Controllers as necessary. A forum post is not the best place to explain the details of all these concepts. You should be looking for Mac App tutorials in either books or on the web.
Alright well how do I link a menu item to another view xib?
- (IBAction) doShowHighScores:(id)sender;
{
[hsWindow makeKeyAndOrderFront:sender];
hsData = [scores_manager getHighScores:nil];
//NSLog(@"Fetch got %lu items", [hsData count]);
[hsTable reloadData];
}
- (IBAction)makeNewTimer:(id)sender
{
NSNib *nnib = [[NSNib alloc] initWithNibNamed:@"SubtimerWindow" bundle:nil];
NSArray *topLevelObjects;
BOOL result;
result = [nnib instantiateNibWithOwner:self topLevelObjects:&topLevelObjects];
if (result)
{
[subTimerList addObject:topLevelObjects];
}
}
I think you are asking for too much from a simple forum thread.
I don't have money for that crapI'd seriously suggest you read something like this:
http://www.apress.com/9781430245421
All of the responses you have to your questions will fall into place after that. I think you are asking for too much from a simple forum thread.
I don't want to do that crap I want to create this sample app so I can create the app for my forum http://technologx.96.ltAbsolutely agree.
No offence intended, but you should probably think about working through some basic tutorials before diving straight into creating an app. There are plenty of good, free sources. If you look at iTunesU then there are some Stanford courses available for free, also raywenderlich.com has some basic beginner's guides. Maybe start here: http://www.raywenderlich.com/category/os-x
A very interesting attitude.
....If that's the case then maybe you'd be better off hiring someone who already has those skills to create your app for you?
I don't have money for that crap
I don't want to do that crap
So don't quote my stuff to me man I don't like that.
I'm not wanting anyone to do my work for me all I want [ is someone to do my work for me ]...
Dude 1st off don't put words into my mouth.Technologx said: ↑
I'm not wanting anyone to do my work for me all I want [ is someone to do my work for me ]...