hi guys
a new problem has crept up for me.I want to set an image as a table's background.Its a grouped table view.im doing this using IB.
i set the background color property for the table view as clearcolor and placed tan image view in the view on which the table view is placed./it looks good on ib,but when the application is loaded t...
Hey guys
Just a quick question, I'm currently working through a tutorial on making a Twitter client for iPhone, nothing special just trying to figure out a bit more about xcode before buying books etc to learn about it
http://www.yousendit.com/download/UFVxQ3Q1TlFTSUJFQlE9PQ
That is a link to my current file, it is saying that I have ...
While using Application Loader to submit my application, I receive 2 errors:
1) Info.plist does not containt a CFBundleResourceSpecification
2) Application failed codesign verification. The signature was invalid, or it was not signed with an Apple submission certificate.
For the latter, I am a registered paying developer that has creat...
Yes, it is a trivial question. I was just wondering. Does the framework have a helper function that does something like this:
switch (value)
{
case "true":
return true;
case "false":
return false;
default:
return Boolean(value);
}
...
Hello,
Is there any way for me to download the iOS 4.0.1 SDK without actually downloading Xcode AGAIN as well? I just think since I already have the most recent version it would be good to save time and space by simply downloading the SDK.
However - I do realize they might have updated Xcode so that it is compatible with new technologi...
I wanted to add a voice chat feature to my business app. I have been trying hard to find anything useful but there is not much help regarding this. Could anyone plz point me to something concrete??
PS: The skype app makes use of this feature.
...
I am writing an app the is pretty much always going to be open (hardly ever would run in background) and I want to be able to alert the user with a sound, vibrating the phone, and showing an alert message when there is a state change. The problem I am having is that when I use the UIAlertView, the AlertView seems to be hit or miss wheth...
I'm trying to use a UIImage as a button which gives the impression of it being turned on then off again within about half a second. This works fine if I switch it on but if I want to switch it off again it doesn't switch on at all. I have a short loop in there to prevent it switching on and off so fast I can't see it but it doesn't switc...
I have an app that i am working on. but when i run it through the eclipse avd... It shows two icons in the app screen. any ideas what is going on?
Also I used the apk to install on my phone and i also saw two installation of the same app on my phone.
...
Hi,
I have just started with iOS development (getting close to finishing my first app). For my next app I want to convert a children's book that my wife wrote and illustrated into a free iPad book.
I am wondering if anyone knows of a framework that would provide me a lot of the basics for handling page turns, basic audio, maybe a tab...
What's wrong with this code? I've used it before but now I'm getting these warnings...
warning: passing argument 2 of 'AudioServicesCreateSystemSoundID' from incompatible pointer type
warning: passing argument 1 of 'AudioServicesPlaySystemSound' makes integer from pointer without a cast
-(void)playfireSound{
NSString *path = [[N...
I have an XML file on a remote server. The user must log in to access this file. Is there away to download the xml page after the user logs into a UIWebview?
Then have NSXMLParser parse the downloaded page?
NSURL *pathURL = [NSURL URLWithString:@"http://se7ensins.com/forums/xml.php"];
NSXMLParser *parser = [[NSXMLParser alloc] initWithC...
How do I implement this menu in the iPhone SDK?
http://www.simplemobilereview.com/wp-content/uploads/2010/03/iphone-way.jpg
...
Hi,
I'm trying to write an app that has to manipulate my inbox and my sent messages without sending or receiving a message.
This tutorial shows me how i can send messages, but i want my phone to think that i sent one, without actually sending one.
I've searched in the Android References and i think i need to use:
SMS Manager
SMS M...
So I have a UIWebView. When it reaches a certain webpage I want it to save that webpage in my resources folder. How can I obtain this goal. Please note It has to be saved threw the UIWebView due to cookie reasons.
Its an XML file that you can't access unless you are logged in.
...
Sometimes compiler produces .dSYM files. I guess this is debugging related file, but I don't know what it is, and how to use it.
What's that? and How to use it?
...
Hi,
I'm using AudioServices to play a sound in my app:
AudioServicesCreateSystemSoundID (soundFileURLRef,&soundFileObject );
and then
AudioServicesPlaySystemSound (soundFileObject);
The sound plays but because I need to play it frequently (its 0.24 seconds long) I get a strange unnatural sounding repetition.
You can hear it at http...
hi,
my view hierachy is following:
BigView
- UIScrollView
- View 1
- View 2
- View 3
- UIView
- UIButton
now i want, that when i press the UIButton, the BigView (which includes the button as well) moves 100px to the top (so parts of the BigView aren't visible any longer) and another UIView gets visible at the free space under...
Hi all,
I have setup an array full of words as objects. I am trying then trying to compare what the user enters in a uitextfield to an object in the array to see if they match.
I have captured a pointer to the uitextview in one of the delegate methods, however I cannot compare the text field contents to the object in the array. I assu...
Hi!
I am working on 'About" section of my iPhone application.
I want to show some of the contributors details as a standard ABUnknownPersonViewController view.
I am creating person view using simple 'school' code:
ABRecordRef aContact = ABPersonCreate();
ABMultiValueAddValueAndLabel(email, @"[email protected]", kABOtherLabel, NULL...