Creating an installer for KEXT

2009-07-27 Thread Shraddha Karwan
Root Authentication check box in the Contents pane. But the version which I have contains an Admin authentication check box. I want the "root" user access for loading the KEXT. How do I achieve this? -- Regards, Shraddha Karwan ___ Cocoa-dev mailing

iPhone cannot compile 2.2 SDK application for 3.0 SDK

2009-07-15 Thread Shraddha Karwan
target build setting. But still the error prevails. Any ideas what can be going wrong? -- Regards, Shraddha Karwan ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the

Making an NSButton appear selected.

2009-06-05 Thread Shraddha Karwan
achieve this? -- Regards, Shraddha Karwan Success usually comes to those who are too busy to be looking for it. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the

debugging iPhone application from another Mac book

2009-06-05 Thread Shraddha Karwan
Hi, I have developed an application which I want to debug from a different Mac machine. I tried importing the private key to another Mac but I get an error: "Unable to import an item. The content of this item cannot be retrieved." Any idea what can be going wrong? -- Regards, Shrad

Re: Change font and text color of label which is a static NSTextField

2009-06-03 Thread Shraddha Karwan
Thank You Andy. That was the cause. Changed the location of the statement from init to awakeFromnib and its working. On Wed, Jun 3, 2009 at 6:22 PM, Andy Lee wrote: > On Jun 3, 2009, at 6:25 AM, Shraddha Karwan wrote: > >> [labelStr setAttributedStringValue:[self setLabelFont:@&

Re: Change font and text color of label which is a static NSTextField

2009-06-03 Thread Shraddha Karwan
Yes, Checking / Unchecking this field doesn't make any change. I can still use the setColor and setFont methods even if the Rich Text field is disabled. On Wed, Jun 3, 2009 at 5:16 PM, rajesh wrote: > did you try checking the Allows "Rich Text" field in Interface Builder for > labelStr ? > > __

Re: Change font and text color of label which is a static NSTextField

2009-06-03 Thread Shraddha Karwan
em to work. What is labelStr, and how are you expecting changing it to affect your > label? > > Also, as a point of style, the "set" prefix should be limited to setters. A > more appropriate name for this method would be something like > "stringWithLabelAttributes&

Change font and text color of label which is a static NSTextField

2009-06-03 Thread Shraddha Karwan
]; return atted; } [labelStr setAttributedStringValue:[self setLabelFont:@"Checking for updates"]]; -- Regards, Shraddha Karwan ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments t

Re: Unknown Host: Operation timed out Error

2009-05-21 Thread Shraddha Karwan
Hi, The application which is running on iPhone Simulator crashes. And the Debugger Console displays message "Unknown Host: Operation timed out". On Fri, May 15, 2009 at 10:12 PM, Shawn Erickson wrote: > On Fri, May 15, 2009 at 6:40 AM, Shraddha Karwan > wrote: > > Ok, bu

iPhone Photo Album and Camera Apps crashing

2009-05-20 Thread Shraddha Karwan
tion? Any ideas? -- Regards, Shraddha Karwan ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update yo

iPhone text on UIImage not getting displayed on device.

2009-05-18 Thread Shraddha Karwan
I used the following function to add text on UIImage. I can display the text on iPhone Simulator but its not getting displayed on the actual device. What can be the cause? CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB(); CGContextRef context = CGBitmapContextCreate(NULL, w, h, 8, 4 *

Re: iPhone Generating and displaying images using Bitmap

2009-05-18 Thread Shraddha Karwan
: 0 x 0. What can be the cause for this error? Any ideas? On Mon, May 18, 2009 at 8:33 PM, Gwynne Raskind wrote: > On May 18, 2009, at 4:03 AM, Shraddha Karwan wrote: > >> I have a buffer containing JPEG image data. I need to display this buffer >> in >> form of images. I

iPhone Generating and displaying images using Bitmap

2009-05-18 Thread Shraddha Karwan
Hi, I have a buffer containing JPEG image data. I need to display this buffer in form of images. I copied this buffer to a file and then used the following: CGDataProviderRef ref = CGDataProviderCreateWithFilename([appFile UTF8String]); CGImageRef imgRef = CGImageCreateWithJPEGDataProvider(ref,NU

Re: Unknown Host: Operation timed out Error

2009-05-15 Thread Shraddha Karwan
earched on the internet and >> got to know that this error is related to SNMP. >> > > No, you're on the wrong track. SNMP is not involved at all here - the fact > that a similar error message appears on the net-snmp-users mailing list is a >

Unknown Host: Operation timed out Error

2009-05-15 Thread Shraddha Karwan
Hi, I am writing an iPhone application. When I traverse from the main screen to a second screen, an AlertView is displayed. If the user clicks on the Cancel button of this alert view I am traversing back to the main screen. I used this [self.navigationController popToViewController: [self.navigat

Re: iPhone how to suppress phone dialer screen

2009-05-08 Thread Shraddha Karwan
On Fri, May 8, 2009 at 5:16 PM, Gwynne Raskind wrote: > Please don't suppress the standard dialer screen. As long as it remains, > the user has no doubt about what you're doing, and how to interact with the > interface. > > It would worry me if there *was* a way to suppress it. Control of the > d

Fwd: iPhone how to suppress phone dialer screen

2009-05-08 Thread Shraddha Karwan
Hi, I am writing an application which is in landscape mode. It dials a phone number using the "tel" protocol. While dialing the standard iPhone dialer screen pops up. Is there any means by which this screen can be suppressed? Or how can I make this screen device orientation aware? Is there any oth

iPhone how to suppress phone dialer screen

2009-05-08 Thread Shraddha Karwan
Hi, I am writing an application which is in landscape mode. It dials a phone number using the "tel" protocol. While dialing the standard iPhone dialer screen pops up. Is there any means by which this screen can be suppressed? Or how can I make this screen device orientation aware? Is there any oth

Re: Can't launch a new Window at click of a button

2008-12-11 Thread Shraddha Karwan
Thanks for the reply but I have gone through this tutorial, it doesn't talk about advanced stuff of adding multiple windows and the nib files, file owners etc in detail. On Thu, Dec 11, 2008 at 6:48 PM, rajesh <[EMAIL PROTECTED]> wrote: > May be its good to follow a printed material first. > This

Can't launch a new Window at click of a button

2008-12-11 Thread Shraddha Karwan
Hi,I am a newbie in Cocoa application development on Mac OS X 10.5.4. I just want to launch a new Window when a button of my main window is clicked. I am absolutely not able to find a good tutorial to begin with. Also there is no example named "SimpleMultiWindow" in the /Developer/Examples folder.

Wizard development on Mac

2008-12-10 Thread Shraddha Karwan
Hi, I have a MS Windows based Application Wizard written in C#. It is a typical Next-Next-Finish types Wizard. I want to develop a similar Application Wizard for Mac OS X 10.5.4. I have gone through a number of applications from the Developer documentation but I was not able to figure out which co