User shrads - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T17:27:39Zhttp://stackoverflow.com/feeds/user/39270http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/743636/iphone-disabling-uiactionsheet-buttons3iPhone Disabling UIActionSheet buttonsshrads2009-04-13T11:24:21Z2009-12-15T14:43:18Z
<p>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?</p>
http://stackoverflow.com/questions/461235/video-streaming-from-a-camera-over-the-internet0Video streaming from a Camera over the internetshrads2009-01-20T13:09:28Z2009-11-07T07:00:02Z
<p>I want to write an application which streams a video content which is obtained from a camera (IP Camera) over the internet. By reading some of the posts I have a doubt that only the built-in camera of iPhone can be video streamed. Can I access any other camera and capture images from it?</p>
<p>Precisely can I access other cameras on iPhone and display live video?</p>
http://stackoverflow.com/questions/442396/how-to-give-title-to-nspersistentdocument-window0How to give title to NSPersistentDocument windowshrads2009-01-14T09:28:16Z2009-09-29T03:45:02Z
<p>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 <code>-setTitle:</code> method which I can use to change the title. Any ideas how can I go about doing this?</p>
http://stackoverflow.com/questions/304885/unable-to-call-an-objective-c-method-from-a-c-function0Unable to call an Objective C method from a C functionshrads2008-11-20T10:28:11Z2009-06-18T14:43:24Z
<p>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 that class. The strange thing happening is that methods previously to the an xyz method are called perfectly but when that xyz method is called, that method and the methods after it aren't getting executed.
I don't get any errors. So can't figure out what exactly is happening.
Any ideas as to what might be the reason for this?</p>
http://stackoverflow.com/questions/423792/updating-the-progress-indicator-while-downloading-firmware-to-the-device0Updating the progress indicator while downloading firmware to the device.shrads2009-01-08T10:23:08Z2009-01-08T15:45:58Z
<p>I am developing a cocoa application which downloads firmware to the device. The progress of downloading is showed using NSProgressIndicator. I call the <code>-incrementBy:</code> method of NSProgressIndicator after DeviceRequestTO method in a while loop. But the progress indicator gets updated only after the entire firmware is written to the device. It shows 100% completion at one go itself. So I added the <code>-displayIfNeeded</code> method of NSView class. Now it shows progress smoothly but this too occurs after the firmware download is complete. How can I achieve the progress indication and write operation simultaneously?</p>
<p>Following is the code:</p>
<pre><code>while(1)
{
int result = (*dev)->DeviceRequestTO(dev, &request);
printf("\nBlocks Written Successfully: %d",DfuBlockCnt);
[refToSelf performSelectorOnMainThread:@selector(notifyContent)
withObject:nil
waitUntilDone:NO];
}
//In main thread
- (void)notifyContent{
[dnldIndicator incrementBy:1];
[self displayIfNeeded];
}
</code></pre>
http://stackoverflow.com/questions/412483/query-about-design-guidelines-for-application-development1Query about design guidelines for application development.shrads2009-01-05T07:23:40Z2009-01-05T23:27:24Z
<p>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 the application (i.e Vendor logo and background color for each screen). I want to develop a similar application wizard for Mac. I noticed that all the applications have a default Grey colored window in Mac. Is there any design guideline provided by Apple which states that the background color of the windows must be the default? Can I use custom colors and images for the application? Any ideas will be highly appreciated.</p>
http://stackoverflow.com/questions/397572/how-to-give-nswindow-a-particular-background-color0How to give NSWindow a particular background colorshrads2008-12-29T11:43:54Z2008-12-30T07:39:29Z
<p>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 Window" alternative. How can I make the color of the window as desired?</p>
http://stackoverflow.com/questions/397430/using-ftp-with-nsurl0Using FTP with NSURLshrads2008-12-29T10:11:10Z2008-12-29T13:13:47Z
<p>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 provide username and password to the ftp site.</p>
http://stackoverflow.com/questions/343088/nstextview-not-updating-in-a-loop-while-writing-to-a-usb-device0NSTextView not updating in a loop while writing to a USB deviceshrads2008-12-05T07:04:41Z2008-12-06T06:31:04Z
<p>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 textView, which is an object of NSTextView. I call the <code>-[NSTextView insertText:]</code> method in the loop when I get the write operation status from the device.</p>
<p>The problem is that the NSTextView doesn't get updated at every call of <code>-insertText:</code>. I get the entire contents of the NSTextView only after the entire loop has been executed.</p>
<p>I didn't see an appropriate refresh or update method for NSTextView class. How can I recieve the status of the operation and update the NSTextView simultaneously?</p>
<pre><code>- (IBAction)notifyContentHasChanged:(NSInteger) block {
NSString *str;
str = [NSString stringWithFormat:@"Block Written Successfully: %d\n", block];
[data insertText:str];
}
- (IBAction)func {
while(USB_SUCCESS(status))
{
printf("\nBlocks Written Successfully: %d",BlockCnt);
[refToSelf notifyContentHasChanged:BlockCnt];
}
}
</code></pre>
<p>Note that the <code>printf</code> on console is updated timely but not the NSTextView.</p>
http://stackoverflow.com/questions/343088/nstextview-not-updating-in-a-loop-while-writing-to-a-usb-device/343848#343848-1Answer by shrads for NSTextView not updating in a loop while writing to a USB deviceshrads2008-12-05T13:33:07Z2008-12-05T13:33:16Z<p>The problem is solved. It required displayIfNeeded() method of the NSView class.</p>
http://stackoverflow.com/questions/323350/mvc-architecture-question-for-mac-application0MVC architecture question for Mac application.shrads2008-11-27T09:58:22Z2008-11-27T17:02:11Z
<p>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 have method in the controller class to edit this textView. I tried creating a controller object from the model class method and edited the textView. Although I don't get any errors, but its not displaying the text in the textView. How do I get the model class use controller class method to display text continuously..?? Is it that I am creating a local controller object and referring to its textView instead of the original controller object.</p>
<p>Controller.m file:</p>
<pre><code>- (void) notifyContentHasChanged:(NSInteger) block {
NSString *str;
str = [NSString stringWithFormat:@"Block Written Successfully: %d\n", block];
[data insertText:str];
}
</code></pre>
<p>Model.m file: </p>
<pre><code>Controller * c = [[Controller alloc] init];
while (USB_SUCCESS(status)){
DfuBlockCnt++;
printf("\nBlocks Written Successfully: %d",DfuBlockCnt);
[c notifyContentHasChanged:DfuBlockCnt];
}
</code></pre>
http://stackoverflow.com/questions/320480/which-is-better-apply-two-conditions-in-nested-if-or-using-single-with-and/320669#3206690Answer by shrads for Which is better apply two conditions in nested If or using single with And ?shrads2008-11-26T13:20:00Z2008-11-26T13:20:00Z<p>It depends on what exactly you want to achieve. It's a logical question rather than a programming query. If you have a dependent condition i.e. If the first is TRUE and then test the second condition; if second TRUE then do something , if FALSE do something, in this case you need to use a nested if. But you need the state of both the conditions to do something then you can go with the operators.</p>
http://stackoverflow.com/questions/320635/usb-transaction-timeout-on-mac-os-x-10-5-40USB Transaction Timeout on Mac OS X 10.5.4shrads2008-11-26T13:03:14Z2008-11-26T13:03:14Z
<p>Hi,
I am writing a Device Firmware Updater for a Bluetooth Headset device on Mac OS X 10.5.4.
while downloading the firmware I keep on getting "Transaction Timeout" errors very frequently. The application runs successfully sometimes. Did anyone get such similar error?</p>
http://stackoverflow.com/questions/316879/handling-callbacks-in-objective-c3Handling Callbacks in Objective-Cshrads2008-11-25T10:03:58Z2008-11-25T22:26:56Z
<p>Hi,
I have a method in an objective-C class. It has 2 callback functions written in C. The class pointer i.e. <code>self</code> is passed to these functions as <code>void *</code>. In the C functions I create a pointer of type class and assign the <code>void *</code> parameter.
The first callback function executes successfully. But the <code>void *</code> pointer becomes <code>nil</code> in the 2nd callback function. Note that I haven't tweaked pointer in the first callback but still I get <code>nil</code> in 2nd callback.</p>
<p>Any ideas what might be going wrong?</p>
<p>For example:</p>
<pre><code>kr = IOServiceAddMatchingNotification(gNotifyPort, kIOFirstMatchNotification,
matchingDict, RawDeviceAdded, NULL,
&gRawAddedIter);
RawDeviceAdded(NULL, gRawAddedIter, self);
</code></pre>
<p>This works fine. But below function receives <code>self</code> as <code>nil</code>.</p>
<pre><code>kr = IOServiceAddMatchingNotification(gNotifyPort, kIOFirstMatchNotification,
matchingDict, BulkTestDeviceAdded, NULL,
&gBulkTestAddedIter);
BulkTestDeviceAdded(NULL, gBulkTestAddedIter, self);
</code></pre>
http://stackoverflow.com/questions/301233/accessing-controller-data-member-in-model-class/304930#3049300Answer by shrads for Accessing Controller data member in Model classshrads2008-11-20T10:48:09Z2008-11-20T10:48:09Z<p>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. Controller.h already has Model.h and now if I again import Controller.h in Model.h the compiler just gets confused.
Any ideas how can I resolve this to let the controller object get the content status from the model.</p>