Faster text editing in iOS App

2015-09-28 Thread Appa Rao Mulpuri
Hi, Do we have any support to faster edit the text in iOS app? Explored different things like using default keyboard/new Custom keyboard with prediction ON and use of microphone to translate the text from dictation. Looking for tools where translation to text from dictation happened within the

Re: Tech update avoiding legacy code

2015-08-13 Thread Appa Rao Mulpuri
We have limited people on 10.5, but revenue prospective we couldn¹t ignore them. Thanks for the priority order. In GDC Vs ARC, GCD is the first one to opt unless if you are app has more memory leaks. Correct me If I am wrong. Not sure, different code base will workout in this case. Implementation

Tech update avoiding legacy code

2015-08-13 Thread Appa Rao Mulpuri
Hi List, My Mac application starts running from 10.5 onwards. We are planning to adopt new technologies like GCD, Storyboards, ARC, Auto Layout and Swift. We have benefits to start using like App performance improvements, reducing memory leaks, reduce number of files and code size reduction...

Xcode 5.1 is crashing in 10.8.5

2015-02-09 Thread Appa Rao Mulpuri
Hi List, Xib created with Xcode 6.1.1 was not opening(Xcode is crashing) in Xcode 5.1.1, even if we set the “Opens in” and “Builds for” properties to 5.1 specific. Observation is: Mac OS 10.10 + Xcode 5.1.1 — XIB is opening after the properties change, but Mac OS 10.8.5 + Xcode 5.1.1 is not wor

NSButton checkbox type with the disable color is not visible in Yosemite

2014-09-21 Thread Appa Rao Mulpuri
Hello List, I have a background view with the black color. And on top of it, I’ve placed a Checkbox with the attributed title with the white color. In enabled mode, text is visible with the white color, but if I make the button to disabled mode (with setEnabled:NO) the text is not visible, only

NSURLDownload with Authentication

2014-09-04 Thread Appa Rao Mulpuri
Hi, I am trying to add the authentication logic for the existing code with the NSURLDownload, but download:canAuthenticateAgainstProtectionSpace and download:didReceiveAuthenticationChallenge: are not being called with the below sample code base. But Apple Documentation says: * If the re

AuthorizationExecuteWithPrivileges with execution failure error

2014-07-23 Thread Appa Rao Mulpuri
Hi, Any idea why following code always returning errAuthorizationToolExecuteFailure (-60031). Tried multiple combination of flags, but no luck. // Create authorization reference OSStatus status; AuthorizationRef authorizationRef; // kAuthorizationRightExecute == "system.privilege

Re: NSTableView Selection highlight issue in 10.10

2014-07-09 Thread Appa Rao Mulpuri
Right, why the functional breaks in the existing functionality? Sent from my iPhone > On 09-Jul-2014, at 8:36 pm, Kyle Sluder wrote: > >> On Jul 8, 2014, at 11:14 PM, Appa Rao Mulpuri >> wrote: >> >> In Yosemite, TableView with the Sourcelist as selectionHi

NSTableView Selection highlight issue in 10.10

2014-07-08 Thread Appa Rao Mulpuri
In Yosemite, TableView with the Sourcelist as selectionHighlightStyle with the cell based drawing is giving the blue selection though we override the highlightSelectionInClipRect in the custom class. In the Documentation, its mentioned that highlightSelectionInClipRect is not called if the high

DNS Lookup

2014-05-15 Thread Appa Rao Mulpuri
Hi List, In Webkit, do we have any provision to provide application level DNS lookup map to route the particular URLs to a IP address? Similar like /private/etc/hosts file, trying to maintain a map at application level with DNS name as key and array of IP addresses, which will provide the web

Re: Understanding Application crash

2014-03-24 Thread Appa Rao Mulpuri
Thanks for the reply Jens. On 3/25/14 11:06 AM, "Jens Alfke" wrote: > >On Mar 24, 2014, at 10:25 PM, Appa Rao Mulpuri >wrote: > >> What is the best way to understand the Cocoa application crashes? Some >>times my application is getting crashed, while clic

Understanding Application crash

2014-03-24 Thread Appa Rao Mulpuri
Hi List, What is the best way to understand the Cocoa application crashes? Some times my application is getting crashed, while clicking on the NSButtons, but it is not always and very rarely. It is happening in the production, not in the staging environment. 0 CoreFoundation

Re: libcrypto linking problem in Leopard

2014-01-06 Thread Appa Rao Mulpuri
Hi Dave, Able to change the path in the Mach O with the Install_name_tool, but while launching the app, it is checking the compatibility version and failing to launch. Here is the Otool output: /usr/lib/libcrypto.0.9.7.dylib (compatibility version 0.9.8, current version 47.2.0) Regards, Appar

libcrypto linking problem in Leopard

2014-01-02 Thread Appa Rao Mulpuri
Hi List, I am using Mac OS X 10.8 SDK for the development and deployment target set to Mac OS 10.5. I am using libcrypto dylib in my code base, application is working fine in all the OS, except in Leopard. Application is failing to launch in Leopard and giving the Library not loaded error. Lib

Re: Memory Leak on UIImage resizableImageWithCapInsets

2014-01-02 Thread Appa Rao Mulpuri
JP > >Sent from my iPhone > >> On Jan 3, 2014, at 10:39 AM, Appa Rao Mulpuri >> wrote: >> >> Add [volumeView release] before making it to nil. >> >> >> Regards, >> >> Apparao Mulpuri >> Senior Systems Analyst, Mac Poker >>

Re: Memory Leak on UIImage resizableImageWithCapInsets

2014-01-02 Thread Appa Rao Mulpuri
Add [volumeView release] before making it to nil. Regards, Apparao Mulpuri Senior Systems Analyst, Mac Poker IVY Comptech Private Limited 6th Floor, Block B, Divyasree Omega, Kondapur, Hyderabad-500081. Mobile + 91 (0) 988 500 4790 DD + 91 (0) 40 4472 1000 ext: 4391 On 1/3/14 10:16 AM, "Sasik

Re: Keep sibling view in Responder Chain

2013-12-27 Thread Appa Rao Mulpuri
Hi Use SetNextResponder method to insert your view into the responder chain. https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/Even tOverview/EventArchitecture/EventArchitecture.html will give the more information. Regards, Apparao Mulpuri On 12/27/13 6:22 PM, "Trygve Ind

Re: Mavericks CA Layer Issue

2013-12-22 Thread Appa Rao Mulpuri
Hi Cody, Finally got the Working solution: We Subclassed CALayer and set it to Superview with WantsLayer and override masksToBounds property to return always NO. Question is: not getting why this is Mavericks specific? Is Apple fixed any issue in CALayer specific to this or it is a Bug in Maveri

Unit testing Cocoa Application built with custom frameworks

2013-12-16 Thread Appa Rao Mulpuri
Hi List, I have an application developed with few custom frameworks and plugins. Started writing Unit tests for the Frameworks first. Unfortunatly, Otect(/Developer/Tools/otest) is giving the crash with the following error: 2013-12-12 18:03:36.280 otest-x86_64[77507:707] The test bundle at /U

Unit testing Cocoa application

2013-12-16 Thread Appa Rao Mulpuri
Hi List, I have an application developed with few custom frameworks and plugins. Started writing Unit tests for the Frameworks first. Unfortunatly, Otect(/Developer/Tools/otest) is giving the crash with the following error: setenv _REAL_SDKROOT macosx10.5 /bin/sh -c /Users//../../Build/.build

Unit testing my Cocoa application

2013-12-16 Thread Appa Rao Mulpuri
Hi List, I have an application developed with few custom frameworks and plugins. Started writing Unit tests for the Frameworks first. Unfortunatly, Otect(/Developer/Tools/otest) is giving the crash with the following error: setenv _REAL_SDKROOT macosx10.5 /bin/sh -c /Users//../../Build/.build

Re: help with logic error

2013-12-12 Thread Appa Rao Mulpuri
Probably you may need to add the Default case in Switch case block or else initialize with Zero rect. - Apparao On 12/12/13 5:22 PM, "2551" <2551p...@gmail.com> wrote: >Hi folks > >I need some help with a logic error the Static Analyzer is throwing up. I >didn¹t write this code (in fact, its a

Re: Toggle framework in Cocoa

2013-12-10 Thread Appa Rao Mulpuri
/wiki/Feature_toggle On 12/10/13 7:10 PM, "Uli Kusterer" wrote: >On 10 Dec 2013, at 14:31, Appa Rao Mulpuri >wrote: >> Do we have toggle framework in Cocoa? I searched in the internet and >>found http://www.togglz.org/, which is written in Java. I am curious, we &

Toggle framework in Cocoa

2013-12-10 Thread Appa Rao Mulpuri
Hi List, Do we have toggle framework in Cocoa? I searched in the internet and found http://www.togglz.org/, which is written in Java. I am curious, we have equivalent in Cocoa as well. - Apparao M This email and any attachments are confidential, and may be legally privileged and protected by

Tooltip Panel BG color

2013-06-01 Thread Appa Rao Mulpuri
Hi List, Is there any way to change the Tooltip Panel background color from Banana Yellow to some other color? I have checked, seems Cocoa is displaying the tooltips with the help of NSTooltipManager private class. Reason, why I need to change the BG color of Tooltip is: my App is loading some

Re: Displaying "Trebuchet MS" font

2013-05-13 Thread Appa Rao Mulpuri
ubject: Re: Displaying "Trebuchet MS" font On May 13, 2013, at 7:07 AM, Appa Rao Mulpuri mailto:appar...@ivycomptech.com>> wrote: I am working on an application which will display Same font (Trebuchet MS) throughout the Application. I have changed in all places except the following

Displaying "Trebuchet MS" font

2013-05-13 Thread Appa Rao Mulpuri
Hi, I am working on an application which will display Same font (Trebuchet MS) throughout the Application. I have changed in all places except the following ones Window Tool bar items text Text in NSAlert panels Tooltip text I tried to fix this by overriding NSFont class methods (which is not

Re: Tooltip with Custom bg color/image and text color

2012-11-25 Thread Appa Rao Mulpuri
doing all that own, can't we override the existing tooltip view with my view? Regards, Apparao Mulpuri On 24/11/12 3:40 AM, "Jerry Krinock" wrote: > >On 2012 Nov 22, at 02:12, Appa Rao Mulpuri >wrote: > >> I may need to display an email in the tooltip. >

Re: Tooltip with Custom bg color/image and text color

2012-11-22 Thread Appa Rao Mulpuri
In some cases, I may need to display an Image (not email, sorry for the typo) in the tooltip. On 22/11/12 3:37 PM, "Appa Rao Mulpuri" mailto:appar...@ivycomptech.com>> wrote: Hi, In Cocoa, do we have provision to change the Tooltip text color and bg color. In some case

Tooltip with Custom bg color/image and text color

2012-11-22 Thread Appa Rao Mulpuri
Hi, In Cocoa, do we have provision to change the Tooltip text color and bg color. In some cases, I may need to display an email in the tooltip. http://stackoverflow.com/questions/2861783/how-do-i-set-the-text-color-of-a-cocoa-tooltip is mentioned override the drawWithExpansionFrame, but failed

Parser Support

2012-06-18 Thread Appa Rao Mulpuri
Hi List, Do we have any parser to parse a file with the following entries? ID String ID Actual String 1=STRINGLITERAL_ID_1=String 1 some Blah 2=STRINGLITERAL_ID_2=String 2 3=STRINGLITERAL_ID_3=String 3 .. .. Basically I need to construct two dictionaries from that file. One with 'ID'

IKPictureTaker crash

2012-02-15 Thread Appa Rao Mulpuri
Hi List, I am using IKPictureTaker class for getting the picture and crop an image. If I pass an image with one pixel width/ height its getting crashed and giving the following exception. Is there any way to prevent the crash. #0 0x7fff92d0c390 in objc_msgSend_vtable14 () #1 0x7ff

Re: ical UI

2012-02-06 Thread Appa Rao Mulpuri
Two ways: 1. NSMatrix with the Day custom cells 2. Custom NSTableView by overriding drawRect method. - Apparao On 07/02/12 12:36 AM, "Scott Anguish" wrote: >Using NSTableView for this is likely entirely inappropriate. :-) > >You¹re probably best to either rewrite it entirely as a custom view

TimeZones

2012-01-17 Thread Appa Rao Mulpuri
Hi List, Quick question related to Time zones. I want to get the Time zone standard name for the particular timezone. I have used following code base to get the string, which is working perfect. NSLocale *locale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US"]; NSString *timeZoneId = [

NSException callStackSymbols

2012-01-05 Thread Appa Rao Mulpuri
Hi List, I am using NSException callStackSymbols API for printing the Stack trace when ever my application is crashed with the exception. I am dependent on Webkit framework in my application and using this framework across different modules. My application is crashing most of the times in Web k

Re: Lion: Batch close

2011-12-22 Thread Appa Rao Mulpuri
Name: NSUncaughtSystemExceptionException Reason: Uncaught system exception: signal 5 On 23/12/11 11:50 AM, "Ken Thomases" wrote: >On Dec 22, 2011, at 11:52 PM, Appa Rao Mulpuri wrote: > >> I tried Instruments and it is showing the following crash log: >

Re: Lion: Batch close

2011-12-22 Thread Appa Rao Mulpuri
I tried Instruments and it is showing the following crash log: 1 libobjc.A.dylib 0x7fff952f5d5e objc_exception_throw + 43 2 CoreFoundation 0x7fff9697e4c9 -[NSException raise] + 9 3 ExceptionHandling 0x000100325e0a NSEx

Lion: Batch close

2011-12-20 Thread Appa Rao Mulpuri
Hi, My application is crashing on Lion if user tries to close all open windows using Option key + Mouse click. Same is working in Leopard and Snow leopard. Is anything is changed related to Batch Close in Lion? Any work around for this? - Apparao This email and any attachments are confidential

UIPickerView kind control in Mac OS X

2011-11-30 Thread Appa Rao Mulpuri
Hello List, I am working on implementation of UIPickerView kind control in Mac OS X. Based on the number of Components in the Picker, I have added NSTableview for each component, but the problem I am facing is Animation in Scrolling. Is there any way to add Animation support in NSTableView? -

Lion: Strange issue in NSTableView

2011-11-30 Thread Appa Rao Mulpuri
Hello List, I am observing the strange issue in NSTAbleView on Mac OS X 10.7. NStableView has the support like user can select multiple rows in sequence using mouse drag. Same code is working fine in Snow leopard, but couldn't in Lion. I had a look at http://developer.apple.com/library/mac/#re

Placing NSComparator into Dictionary

2011-07-01 Thread Appa Rao Mulpuri
Is there any way to put the NSComparator pointers into Dictionary? I have tried put NSValue using [NSValue valueWithPointer:] , but giving me nil in get operation. Apparao Mulpuri This email is sent for and on behalf of Ivy Comptech Private Limited. Ivy Comptech Private Limited is a limited lia

TimeZone DST support

2011-06-24 Thread Appa Rao Mulpuri
Is there any way to get particular time Zone supports Day Light saving(DST) or not. For example, if you take Asia/Kolkata, no DST in any year and for America/Chicago, DST is YES. I saw following APIs in NSTimeZone, but it is considering the Date and returns that date is in DST or not. ­ isDaylig

KVO in Frameworks/Plugins

2011-06-01 Thread Appa Rao Mulpuri
Hi, I am planning to use the NSUserDefaultsController and KVO in Application preferences implementation as a separate framework. Question is: My application has many frameworks and Plugins and has to observe the Preferences values change ( NSUserDefaultsController will have Key-Value pairs). Is

Re: Does not allow to Uninstall the application when it is running.

2011-04-20 Thread Appa Rao Mulpuri
I think, PS command will give you the running applications list, from that you can find your app is running or not Apparao On 19/04/11 5:39 PM, "kirankumar" wrote: > Hi All, > > I have one application for this i developed uninstall application when i run > uninstall utility it completely unins