App Crashing in ARC !!

2012-02-23 Thread Naresh Kongara
HI, I'm working on a Cocoa Desktop application, which we recently migrated from Manual memory to ARC. Application is sometimes crashing when the alert is closed. Here is the crash log and stack trace. *** -[NSPanel release]: message sent to deallocated instance 0x111c74a60 #0 0x7fff8ffd

Issue with NSAlert in ARC !!

2012-02-22 Thread Naresh Kongara
HI, I'm working on a Cocoa Desktop application, which we recently migrated from Manual memory to ARC. Application is sometimes crashing when the alert is closed. Here is the crash log and stack trace. *** -[NSPanel release]: message sent to deallocated instance 0x111c74a60 #0 0x7fff8ffd

NSDragOperation for operationNotAllowedCursor !!

2011-06-15 Thread Naresh Kongara
Hi, I'm working on a cocoa application, which is like a file browser similar to finder. In this application we implemented drag and drop of files/folder. we succeeded in displaying copy and link cursors for respective drag operations. As in finder how can we display a OperationNotAllwedCursor

NSDragOperation for operationNotAllowedCursor !!

2011-06-15 Thread Naresh Kongara
Hi, I'm working on a cocoa application, which is like a file browser similar to finder. In this application we implemented drag and drop of files/folder. we succeeded in displaying copy and link cursors for respective drag operations. As in finder how can we display a OperationNotAllwedCursor

Re: NSBrowser Drag and Drop Issue !!

2011-04-15 Thread Naresh Kongara
gging sessions. I'm not sure where its happening. Thanks, Naresh Kongara On Apr 15, 2011, at 11:27 AM, Corbin Dunn wrote: > > On Apr 14, 2011, at 5:16 PM, Naresh Kongara wrote: > >> HI All, >> >> I implemented drag and drop in NSBrowser, through which I c

NSBrowser Drag and Drop Issue !!

2011-04-14 Thread Naresh Kongara
xception. Do let me know. Thanks, Naresh Kongara ___ 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

Re: won't work call from uitableview cell

2010-11-04 Thread Naresh Kongara
On Nov 4, 2010, at 8:27 AM, Keary Suska wrote: > On Nov 3, 2010, at 11:36 AM, Субач Павел Витальевич wrote: > >> Need some help, i want call from choose cell in my table with phone number: >> >> - (void)tableView:(UITableView *)tableView >> didSelectRowAtIndexPath:(NSIndexPath *)indexPath { >>

Re: Making Java Calls from Objective-C !!

2010-10-08 Thread Naresh Kongara
ober 2010 22:25, Naresh Kongara wrote: > Hi, > > I want to know how to make java calls from Obj-C. (Java Bridge Seems to be > deprecated). > Is it possible with out bridge ? If yes , Can any body help me on Where to > start ? > > Thanks, > Kongara

Making Java Calls from Objective-C !!

2010-10-08 Thread Naresh Kongara
Hi, I want to know how to make java calls from Obj-C. (Java Bridge Seems to be deprecated). Is it possible with out bridge ? If yes , Can any body help me on Where to start ? Thanks, Kongara___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Plea

Accessing Scrollers in NSBrowser ?

2010-09-29 Thread Naresh Kongara
Hi, I want to add an icon over scrollers of Each column in NSBrowser. How can I access the scrollview of each column and how to add action icon to the scroller in each column. Can anybody help me out ? Thanks. kongara___ Cocoa-dev mailing list (Coc

Re: refresh issue with QLPreviewPanel..!

2009-08-31 Thread Naresh Kongara
API, what you do is greatly unsupported (and will break in the future). Add to that the fact QL panel is very asynchronous, and it's expected for you to encounter a *lot* of problems. -- Julien On Monday, August 31, 2009, Naresh Kongara wrote: Hi, I have an app in which i need to displa

refresh issue with QLPreviewPanel..!

2009-08-31 Thread Naresh Kongara
howing the correct view only. There is no problem with file at PDFPath. I don't know why the preview panel is taking the time to refresh. If any one has the idea on it, Please let me know. Thanks, Naresh Kongara naresh.kong...@prithvisolutions.com ___

Performance Issue with Drawing PDFPages on NSView

2009-08-26 Thread Naresh Kongara
ameRect.size.width * scale); NSRectFill(landscapePageView); [pdfImage drawInRect:landscapePageView]; } } } ======== Regards, Naresh Kongara _

Re: Dividing NSView to subviews

2009-04-28 Thread Naresh Kongara
Hi, For larger views I'm not even getting the blur view, its giving some garbage output... If the view needs to be divided into 20 to 25 images , each image of print rect size. Thanks NareshK On Apr 27, 2009, at 11:42 AM, Peter N Lewis wrote: On 27/04/2009, at 12:16 , Naresh Ko

Re: Dividing NSView to subviews

2009-04-26 Thread Naresh Kongara
the cases, but -(NSImage *)imageFromRect:(NSRect) is giving me a some what blurred image... Thanks, NareshK On Apr 25, 2009, at 5:52 AM, Michael Ash wrote: On Fri, Apr 24, 2009 at 8:02 AM, Naresh Kongara wrote: Thanks peter for your reply, Now there is some improvement in the performance

Re: Dividing NSView to subviews

2009-04-24 Thread Naresh Kongara
/04/2009, at 14:11 , Naresh Kongara wrote: I have a NSView which i want to divide into to required sub views. I implemented it using NSView's dataWithPDFInsideRect: (NSRect )aRect, i.e constructed a image view with the data i got . This process is taking long time if the view is larg

Dividing NSView to subviews

2009-04-23 Thread Naresh Kongara
Hi All, I have a NSView which i want to divide into to required sub views. I implemented it using NSView's dataWithPDFInsideRect: (NSRect )aRect, i.e constructed a image view with the data i got . This process is taking long time if the view is large one.. Is there any other way to get th