Search Results

3
votes
3answers
2k views

Handling Callbacks in Objective-C

Hi, I have a method in an objective-C class. It has 2 callback functions written in C. The class pointer i.e. self is passed to these functions as void *. In the C functio …
0
votes
1answer
164 views

MVC architecture question for Mac application.

I have a controller class from which I call a method of model class. Now from this model class method I want to update textView object which is a data member of controller class continuously. I hav …
0
votes
3answers
274 views

NSTextView not updating in a loop while writing to a USB device

I am writing an Objective-C application which communicates with a USB device. The application writes certain data to the device continuously and displays the status of the write operation in a text …
0
votes
2answers
437 views

Using FTP with NSURL

I want to write a cocoa application which downloads a file using ftp. I read about the NSURL class which has "NSURLHandle FTP Property Keys". I want to know how do I make use of these constants to …
0
votes
4answers
1k views

How to give NSWindow a particular background color

I am writing a cocoa application which has a NSWindow. I want to change the background color of the window to a specific color. But the window properties in the inspector only provide "Textured Win …
1
vote
3answers
95 views

Query about design guidelines for application development.

I have a wizard application for MS Windows which is a typical Next-Next-Finish type. The application has a default vendor specific window background theme which persists through all the windows of …
0
votes
3answers
185 views

Updating the progress indicator while downloading firmware to the device.

I am developing a cocoa application which downloads firmware to the device. The progress of downloading is showed using NSProgressIndicator. I call the -incrementBy: method of NSProgre …
0
votes
3answers
122 views

How to give title to NSPersistentDocument window

I have subclassed NSPersistentDocument. I have renamed the window too. But when I run the application I get the title of the application window as "Untitled". There is no -setTitle: me …
1
vote
4answers
892 views

iPhone Disabling UIActionSheet buttons

I want to disable buttons in the UIAction sheet and enable them after a certain condition is true. How do I achieve this? Any ideas? …
0
votes

Accessing Controller data member in Model class

Hi Mecki, Thanks for the reply. If I try using the Controller object inside my Model method by just including "Controller.h" I get loads of errors. Since the #import thing is recursive. i.e. Contro …
-1
votes

NSTextView not updating in a loop while writing to a USB device

The problem is solved. It required displayIfNeeded() method of the NSView class. …