2
votes
7answers
30 views
Waiting for a specified duration in Cocoa
Is there a more straightforward way to wait for a specific amount of time in Cocoa than what I have come up with below?
- (void) buttonPressed {
[self makeSomeChanges];
// give the user some …
2
votes
2answers
35 views
What’s the difference between data source and delegate ?
I have a fundamental question related to Cocoa frameworks design patterns.
What's the difference between delegate and data source?
Both of them could use @protocols declaration, but some classes or …
0
votes
2answers
18 views
How to delay while retaining a responsive GUI on Cocoa Touch?
Basically, I have an array of buttons I want to iterate and highlight (among other things) one after another, with a delay in-between. Seems like an easy task, but I can't seem to manage to get it to …
1
vote
3answers
27 views
Can’t create new xib files in Xcode projects
This one is a doozy...
My buddy just downloaded the iPhone SDK on his Snow Leopard MacBook Pro. No matter what kind of project he creates (Window Based, View Based, etc...,) he can't create or use …
1
vote
1answer
19 views
Getting a Cocoa/Objective-C callback from Google Maps with WebView
Hi, all.
I'm working on a new feature for my Mac application and it has to do with maps. As an example, let's use iPhoto's "Places".
iPhoto uses Google Maps to show the location of various photos …
0
votes
1answer
19 views
[Obj-C] Mac Screensaver with WebView crashes
Hy everybody,
I have a screensaver made with obj-c and cocoa. Everything works fine under OsX 10.6.2 except the following.
Within my screensaver I have a WebView with some application running. When I …
0
votes
1answer
19 views
Accessing collection through KVC (to protect collection and be KVO compliant)
I have a class Test which has an array of Foos. I want to provide access to the Foos without exposing the ivar directly. I'm trying to make this KVC compliant (also to pave the way for KVO …
3
votes
2answers
48 views
GUI-less App Bundle
I would like to create a helper application that has no GUI yet does have access to an app bundle. I was looking at the Xcode command line project templates, but these all just generate executable …
0
votes
1answer
16 views
How to get NSString (Unix style path) from FSSpec
Hi, I am in Mac.
How to get NSString (Unix style path) from FSSpec
Regards,
Dhana.
1
vote
1answer
21 views
How to re-show main window after closed in Cocoa ?
I want to re-show the main window after closed when click my app icon on dock. Anyone know how to do it ?
Thanks in advance.
6
votes
5answers
104 views
In MVC where do you put references to your model Classes?
I have been wondering for a while, after asking different people and without them providing me an at least "a bit concrete" answer:
Where, in an iPhone application should an application keep the …
1
vote
1answer
23 views
NSDateComponents - EXC_BAD_ACCESS error
Basic question to which I'm sure there is a simple answer.
I'm trying to get the timestamp of a photo. When I try to access the NSDateComponents to retrieve a specific date element (say "day" for …
0
votes
0answers
48 views
NSButton state != 0 when alloc’d
I have two projects that include the same code:
NSButton *button = [[NSButton alloc] initWithFrame:ctrlRect];
(gdb) print (int)[button state]
$1 = 1
in the other project
$1 = 0
I am compiling …
0
votes
1answer
22 views
Open panel appears then disappears immediately
Hi,
I am using this code:
NSOpenPanel *openPanel = [NSOpenPanel openPanel];
[openPanel beginForDirectory:nil file:nil types:[NSImage imageFileTypes] modelessDelegate:self didEndSelector:NULL …
1
vote
1answer
49 views
How to get a unique identifier for a protocol object
I'm trying to make a dictionary store a map of delegates that correspond to a protocol. I need some consistent key that represent a protocol.
For example the following gives me a protocol object
…
