Re: Objective-C basics - (Why NSNumber conforms to NSCopying protocol)

2016-08-11 Thread Sasikumar JP
Quincey, David, Thank you for the detailed explanation. Regards Sasikumar JP On 11 August 2016 at 12:34, Quincey Morris < quinceymor...@rivergatesoftware.com> wrote: > On Aug 10, 2016, at 23:32 , Sasikumar JP wrote: > > > what was the reason NSNumber conforms to NSCopying

Re: Xcode 8 - XCODE_VERSION_MAJOR causes compilation issue

2016-08-11 Thread Sasikumar JP
David, Thank for the detail. i have reported the bug(#27801515) for XCODE version number values. As you suggested, i have resolved the compilation issue by using __IPHONE_OS_VERSION_MAX_ALLOWED macro. Thanks Sasikumar JP On 11 August 2016 at 16:33, David Duncan wrote: > > > On Aug

Xcode 8 - XCODE_VERSION_MAJOR causes compilation issue

2016-08-11 Thread Sasikumar JP
lid digit '8' in octal constant) in Xcode 8, since 0800 is not a valid octal value. Is there any work around other than creating 2 different targets(separate target for Xcode 7 and Xcode 8) Regards Sasikumar JP ___ Cocoa-dev mailing li

Objective-C basics - (Why NSNumber conforms to NSCopying protocol)

2016-08-10 Thread Sasikumar JP
what is the purpose of conformance to NSCopying protocol. Regards Sasikumar JP ___ 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

Re: iOS 9 features in iOS 8 targeted projects with swift #availability check

2015-08-16 Thread Sasikumar JP
Quincey, Thank you for the information. I changed the build for value to iOS 9. it works fine now. I am able to run the application on both iOS 9 and iOS 8. Regards Sasikumar JP On Sun, Aug 16, 2015 at 10:24 PM, Quincey Morris < quinceymor...@rivergatesoftware.com> wrote: > On Aug

iOS 9 features in iOS 8 targeted projects with swift #availability check

2015-08-16 Thread Sasikumar JP
am getting compilation error on Main.storyboard "UIStackView before iOS 9.0" I am using Xcode 7 beta 5. How to use the iOS 9 related features on the iOS 8 supported projects using Swift 2 #availability check Regards Sasikumar JP ___

App is not running with the release build

2015-05-12 Thread Sasikumar JP
. Regards Sasikumar JP Sent from my iPhone ___ 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 your

Outlets are nil after awakeFromNib call

2015-05-10 Thread Sasikumar JP
valid for storyboard too. my application is crashing if i do any operation on the outlet var. I am using Xcode 6.3 with Swift. Regards Sasikumar JP ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator

In app purchase payment queue update - application crash

2015-03-03 Thread Sasikumar JP
tion to crash. crash report shows only the function signature which takes 2 ImplicitlyUnWrapped Parameters. not sure this function parameter itself passed with nil value. public func paymentQueue(queue: SKPaymentQueue!, updatedTransactions transactions: [AnyObject]!) Please help me to ide

Re: Is NSURLSession with NSURLSessionDataTask safe for streaming network connection?

2014-12-02 Thread Sasikumar JP
Jens, On Wed, Dec 3, 2014 at 6:36 AM, Jens Alfke wrote: > > On Dec 2, 2014, at 4:47 PM, Sasikumar JP wrote: > > But some times, connection is terminated with -1001(NSURLErrorTimedOut) > error code (may be after 10 or 15 mins). I have tried with different radio > URLs.

Is NSURLSession with NSURLSessionDataTask safe for streaming network connection?

2014-12-02 Thread Sasikumar JP
, connection is terminated with -1001(NSURLErrorTimedOut) error code (may be after 10 or 15 mins). I have tried with different radio URLs. the same behaviour. Basically i want to know whether NSURLSession safe for streaming network connection? Regards Sasikumar JP

Search feature on NavigationBar

2014-10-22 Thread Sasikumar JP
Hi, I am working on iOS 8 based application, i want to use UISearchController to provide search feature. I am able to show the searchBar by setting tableViewHeaderView as serachController.searchBar. but this approach shows searchBar permanently on tableView. Instead of that i want to display t

State Restoration with Multiple Storyboards

2014-09-27 Thread Sasikumar JP
oder methods are getting invoked only for the Main storyboard ViewControllers. How to link the second storyboard in the state restoration process. Any idea is highly appreciated. Thank you Sasikumar JP ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple

Re: Memory Leak on UIImage resizableImageWithCapInsets

2014-01-03 Thread Sasikumar JP
] pathForResource:@"SliderMaximum" ofType:@"png"] returns nil. Image Asset Name : Images.xcasset Image Name : SliderMaximum.png / slidermaxi...@2x.png Thank you Sasikumar JP On Fri, Jan 3, 2014 at 10:49 AM, Appa Rao Mulpuri wrote: > will helps you probably ‹ > http://s

Re: Memory Leak on UIImage resizableImageWithCapInsets

2014-01-02 Thread Sasikumar JP
Apprao, I forgot to mention that this code uses ARC. so release not required. Thank you Sasikumar 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, > > Appar

Memory Leak on UIImage resizableImageWithCapInsets

2014-01-02 Thread Sasikumar JP
UIControlStateNormal]; [self.volumeSliderView addSubview:volumeView]; volumeView = nil; Any help is highly appreciated. Thank you Sasikumar JP ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comment

Re: Custom View drawRect method is not invoked when use with AutoLayout

2013-01-17 Thread Sasikumar JP
? Thanks Sasikumar Sent from my iPhone On Jan 16, 2013, at 9:47 PM, Sasikumar JP wrote: > Hi, > I am working on a project, where i have to create horizontal tableview with > custom tableview cell. i am using AutoLayout constraints to layout all cell's > subview elements. &g

Custom View drawRect method is not invoked when use with AutoLayout

2013-01-16 Thread Sasikumar JP
{ NSLog(@"Rect %@",[NSValue valueWithCGRect:rect]); } I am observing this problem only if i define the custom view from program, where as if i use storyboard/nib file, custom view drawRect method is getting invoked. i am not sure what i am missi

Best practice to handle remoteControlEvent

2012-09-19 Thread Sasikumar JP
Hi, I have tabbar based audio streaming application. I want to receive the remote control event when app is in any tab when it is in background. So I have implemented beginReceivingRemoteControlEvents and endReceiveRemoteControlEvents in each view controllers viewWillAppear and viewWillDisapp

iOS communication with http proxy

2012-07-08 Thread Sasikumar JP
Hi, I have streaming radio application in AppStore. It works fine. Recently I got a problem reported by an user, application does not work,if the http proxy is configured. I am establishing the connection with streaming server directly from my application. I don't know how do the same with p

Re: iOS AdMob full screen banner does not hide

2011-12-01 Thread Sasikumar JP
Hi, I had used 4.x AdMob SDK . it was causing the issue. I tested with the latest SDK 5.x. It works fine. Thanks Sasikumar On Thu, Dec 1, 2011 at 11:52 PM, Sasikumar JP wrote: > Hi, > > I am using AdMob ad in my application. Ads are displayed correctly. > > When i tap the

iOS AdMob full screen banner does not hide

2011-12-01 Thread Sasikumar JP
application panel to kill). Not sure what is wrong. I could not find any details in google. Any help is highly appreciated. Thanks Sasikumar JP ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator

Different deployment target for iPhone & iPad

2011-11-08 Thread Sasikumar JP
supports, I can use storyboard for iPad development. Any suggestion Thanks Sasikumar JP Sent from my iPad___ 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

Use storyboard in iOS app

2011-10-15 Thread Sasikumar JP
Hi, I am planning to redesign my existing app. I want to use the storyboard for UI development and it should support the older OS starting from 3.2. I guess storyboard is Xcode 4.2 feature, it should not be any problem to support for older OS. Anyway I want to conform with you before I star

Re: Is there any API to detect the WIFI/CELL Signal Strength

2011-08-23 Thread Sasikumar JP
Kyle, Thanks for the info. For my education, could you let me know,if there is any API to get the WIFI/CELL signal strength. Thanks Sasikumar JP Sent from my iPad On 23-Aug-2011, at 10:54 AM, Kyle Sluder wrote: > On Aug 22, 2011, at 9:26 PM, Sasikumar JP wrote: > >>

Is there any API to detect the WIFI/CELL Signal Strength

2011-08-22 Thread Sasikumar JP
highly appreciated. Thanks Sasikumar JP ___ 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

Re: How to Identify if the device is used in iAD supported Regions

2011-08-04 Thread Sasikumar JP
ewDidLoadAd:) is not getting invoked for iAD not supported regions. But thats not the case, if Appstore supports iAD, it Displays real ad. otherwise it will display "Test Ad". Either case your delegate method would be invoked. Any one can confirm the behaviour of iAD in the not supported re

How to Identify if the device is used in iAD supported Regions

2011-08-03 Thread Sasikumar JP
re, how to identify the iOS Device is used in supported region? Any help is highly appreciated. Thanks Sasikumar JP ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. C

Handling NSRunLoop with AUGraph

2011-06-02 Thread Sasikumar JP
expected. But I am hearing noise as audio graph is stopped properly. Is there anything wrong in the way I am handling the runloop with AUGraph which makes the runloop to wait for ever. Any help is highly appreciated. Thanks Sasikumar JP Sent from

Issue with NSRunLoop

2011-06-01 Thread Sasikumar JP
k = FALSE before runloop after runloop shouldStopPlyback = FALSE before runloop after runloop shouldStopPlyback = FALSE before runloop stopped AUGraph I am not sure what is the issue here. Please any one guide me what is the wrong with above code in handling the RunLoop. Thanks Sasikumar JP _

Issue with NSRunLoop

2011-06-01 Thread Sasikumar JP
Hi, -- JP.SASIKUMAR ___ 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 your Subscription:

Re: iOS - AudioSession Category to play in sleep mode

2011-04-26 Thread Sasikumar JP
alue for any iOS device. Without seeing your code, I > don't know where your glitches are coming from. Are you by any chance reading > from disk on the same thread that you're playing audio on, or doing anything > else that could cause that thread to block? > > Hank >

Re: iOS - AudioSession Category to play in sleep mode

2011-04-26 Thread Sasikumar JP
e? (As per the Apple document 4096 samples @ 44.1kHz) Thanks Sasikumar JP On 26-Apr-2011, at 8:44 PM, Hank Heijink (Mailinglists) wrote: > You're thinking of kAudioUnitProperty_MaximumFramesPerSlice > (http://developer.apple.com/library/ios/#qa/qa1606/_index.html). You have to >

iOS - AudioSession Category to play in sleep mode

2011-04-25 Thread Sasikumar JP
Hi, I am working on streaming audio player application for iOS. currently i am experimenting with AudioQueue and AudioUnit for playback. Both works fine in the normal condition. But AudioUnit playback stopped playing when device (ipod touch 2nd gen) goes to sleep mode, where as it works fine

iOS - Play streaming(mp3) audio with effects

2011-03-30 Thread Sasikumar JP
I am new to iOS Audio Technology. I am developing an application which will play streaming audio(mp3), planning to add some effects like iPod Equalizer,Pan Control. I have tried to use Matt Gallagher's AudioStreamer API (http://cocoawithlove.com/2008/09/streaming-and-playing-live-mp3-stream.htm

iOS - streaming Audio(mp3) playback using AudioUnit API

2011-03-30 Thread Sasikumar JP
? OR Should i use AudioUnit to add effects? If i use AudioUnit, Will i able to play mp3 audio with out any conversion. Thanks Sasikumar JP ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin

Fwd: Best Approach in displaying the Image in Core Animation Layer - During the animation

2011-02-04 Thread Sasikumar JP
> > David, > > On 04-Feb-2011, at 10:05 PM, David Duncan wrote: > >> On Feb 3, 2011, at 11:11 PM, Sasikumar JP wrote: >> >>> During the Edit mode(Wiggle Animation), Image in Grid(Layer) is not >>> displayed properly.Even though i get 60 FPS duri

Best Approach in displaying the Image in Core Animation Layer - During the animation

2011-02-03 Thread Sasikumar JP
Hi, I am developing an iPhone application, where i present the main screen as spring board view (like iphone main screen). I am trying to implement all the features available in iphone main screen like change the Grid position and Remove the Grid in the Edit Mode. I have implemented the spring b

Re: How to get tapped text from UITextView

2010-04-30 Thread Sasikumar JP
UIWebView with links to each word that you recognize. > > -- > Alex Kac > On my mobile device so please excuse the brevity. > > On Apr 30, 2010, at 12:38 AM, Sasikumar JP wrote: > >> Hi, >> I am working on a iPhone Application. I want to implemen

How to get tapped text from UITextView

2010-04-29 Thread Sasikumar JP
Hi, I am working on a iPhone Application. I want to implement the following feature in my app, but i don't know how to implement it. I want to display the read-only text content in UITextView, where user can tap any word in the text. It should take the user to next screen to disp

Group Table View Edit Mode Animation - iPhone

2010-03-10 Thread Sasikumar JP
Hi, I am working an iPhone app. when my Group Table View enter in to the Edit Mode,i want to add few more sections/rows dynamically with the animation. In the iPhone Contact application, user data modify screen has feature. when this screen enters in to the edit mode, it adds few more s

Clickable UILabel - iPhone

2010-03-10 Thread Sasikumar JP
Hi, I am new to the Cocoa Programming. I am working on my first iPhone app. I want to present the data in tableview, there user can click the url or user name in the text. I have customized the table view cell and displayed the text in UILabel. Not sure how to enable the clickable link for t