Saturday, March 1, 2014
I am walking through Apples tutorial getting started with iOS development. I am at the storyboard area and can't seem to drag the cancel button to the green exit. I am not sure why the exit button doesn't except it. Is anyone else having this issue?
Tuesday, February 26, 2013
How to consume SOAP web service by passing parameters through Xcode 4.3
Im new to IOS programming. Can any one guide me "How to consume a simple parametarized dot net web service through Xcode. I have tried all the solutions which I found from the net but all are giving errors or returning NULL value from the web service."
Your help will be highly appreciated.
Thank u.
Saturday, February 23, 2013
Re: How to consume SOAP web service by passing parameters through Xcode 4.3
Hi,
i found this post very interesting and usefull.
Can I have the source code, too.
Thnx, in advance.
Tuesday, February 12, 2013
Unable to run application tests through command line
I am using xcode4.5 and trying to run application tests from command line. I am currently unable to do it. I have read lots of blogs and links which says to override RunPlatformUnitTests. However nothing works. Can anyone suggest any solutions for this?
Wednesday, January 30, 2013
please tell me you can get access to the messages through the sdk? Using the protocol Bluetooth (MAP)
please tell me you can get access to the messages through the sdk? Using the protocol Bluetooth (MAP)
Where can I get the official list of countries FROM which developers could SELL PAID apps through the app store?
can anyone please link the web address please..........I want the official list of countries from where a developer could develop and sell paid apps through the apple app store.......thanks
please tell me you can get access to the messages through the sdk? Using the protocol Bluetooth (MAP)
please tell me you can get access to the messages through the sdk? Using the protocol Bluetooth (MAP)
Saturday, January 5, 2013
How can I route the audio signal from an internal source like iTunes through a self made Quartz Composition?
Hey,
I was trying to make a music visualizer with Quartz Composer and it works fine with the built-in microphone.
But is there any possibility to use the internal audio signal from a mp3 directly without any workarounds like soundflower or other audio routing software?
Or is it something you could not manage within a Quartz Composition?
How can I route the audio signal from an internal source like iTunes through a self made Quartz Composition?
Hey,
I was trying to make a music visualizer with Quartz Composer and it works fine with the built-in microphone.
But is there any possibility to use the internal audio signal from a mp3 directly without any workarounds like soundflower or other audio routing software?
Or is it something you could not manage within a Quartz Composition?
Sunday, December 30, 2012
Xcode updating MySQL through phpScript in foreign languages
I've a code in xcode which runs a web link to execute phpScripts.
================================================================================ ====
NSString *strURL = [NSString stringWithFormat:@"http://www.???.com/1.php?customerid=??"];
// to execute php code
NSData *dataURL = [NSData dataWithContentsOfURL:[NSURL URLWithString:strURL]];
// to receive the returend value
NSString *strResult = [[NSString alloc] initWithData:dataURL encoding:NSUTF8StringEncoding];
================================================================================ ====
The problem with this is, when I try to input a foreign language as the variable 'customerid', the script will not be executed. Only English will be understood and executed, every other languages with foreign characters will not be executed.
Please advise.