Search Results

0
votes
4answers
2k views

Unable to call an Objective C method from a C function

Hi, I am using MVC architecture for a GUI application. The model class has some C functions. One of the C functions calls some methods of Objective-C class. I call those methods using an object of …
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
166 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
277 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 …
2
votes
6answers
932 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. …