When using Sencha Touch to create a panel - you can tell the panel to enable a fullscreen property. THe panel will fill the space available by the device.
It seems to have a bug or not deal with a bookmark that has been saved to the home screen - and floats underneath the status bar at the top.
Is there a property or setting to manage ...
Hi,
I am trying to prepare my app for distribution to the app store and am getting the following warning in Xcode which is causing an error in ApplicationLoader. I know this is a common problem from searching but I have yet to find a proper solution? I went thru Apple's steps for distribution on the iOS provisioning portal and still get...
Hey all, just wondering what the best way to add this capability was.
I want to be able to press the button normally by doing touchDownInside, but I also want to be able to slide my finger from one button to the next and have the next one trigger.
How can I do that?
Ex:
(-) -> (-)
^Buttons^
...
Hello,
When you decompose a nib file, xcode creates multiple nib files, but I can't see where the "children" nib files are tied or attached to the hierarchy.
...
I'm stuck in a rut over implementing a sectioned plist into a UITableView.
My plist setup is as followed. I have a root array with dictionaries representing sections. These dictionaries have a single string 'sectionname' that dictates the section header as well as an array of dictionaries inside to represent the cells (the reason for th...
Hi guys,
does anybody here know how to generate a XML file or string in the IPhone?
Regards,
Claudio
...
In my iPhone app, I have a collection of contacts from the iPhone address book, whose ABRecordIDs are stored via Core Data. I want to keep track of any changes made to them in and out of my app. Currently, on startup, I loop through all the ABRecordIDs I have, checking for any updates. This is horribly inefficient, of course.
Is there a...
The Apple documentation gives the following warning regarding using View Controllers to manage part of a screen.
Note: You should not use view
controllers to manage views that fill
only a part of their window—that is,
only part of the area defined by the
application content rectangle. If you
want to have an interface compos...
HI all, I use the built-in camera of the Iphone in my apps dans I have two questions.
UIImagePickerController *ipc = [[UIImagePickerController alloc] init];
ipc.sourceType = UIImagePickerControllerSourceTypeCamera;
ipc.delegate = self;
ipc.allowsEditing = NO;
[self presentModalViewController:ipc animated:YES];
First, my camera let...
i can only parse 1st element of this xml but i want to get all the content of cuisine
this is my xml
<cuisines>
<cuisine>Asian</cuisine>
<cuisine>Nepalese</cuisine>
<cuisine>North Indian</cuisine>
<cuisine>Indian Vegetarian</cuisine>
<cuisine>Organic Cuisine</cuisine>
</cuisines>
and this is the code to parse
if ( [elementName isEqu...
I'm considering including some large movies in my app, but I don't want users to have to re-download the movies each time they get an update. When a user downloads an update from the app store, do they end up re-downloading the entire bundle? Or only parts of the app that have changed relative to their version (i.e. do updates only ship ...
I'm using CSS3 animations within PhoneGap, an iPhone web-based SDK that enables you to create native apps using the web technology stack.
The particular CSS animation I have below works in Safari, Chrome, and even the iPhone simulator, but for the life of me #image_cat1, #image_cat2, and #image_cat3 are not being displayed on the actual...
my uiimage has been add to UIView, then i transform it to scale 1.5
when i try to draw image context it will present incorrect position
how to make ImageContext in transform size ?
...
So here is the scenario:
You have already tested your in-app purchase code in the sandbox environment and everything went perfectly.
Your app is now "Ready for Sale" and you want to make sure in-app purchases work flawlessly prior to actually letting your app hit the app store.
To try this, I downloaded a "pre-release" version from...
When I do the following, the output is an integer value:
double myvar = fabs(-5.01);
NSLog(@"%.f", myvar);
Should it be 5.01?
...
how to push button and button name change and agin pus find same name in iphone
...
Hi all,
I'm getting a peculiar warning, specifically this one:
warning: class does not implement the 'UIWebViewDelegate' protocol
... when I have these methods in my application:
-(void)webViewDidStartLoad {
...
}
-(void)webViewDidFinishLoad {
...
}
... and even after setting the UIWebView's delegate to self, I still get ...
Hi,
I want to call my button click event while touching the uiimageview named as(image1).Imageview placed in uiview(view1).
This is my code:
- (IBAction)buttonClicked:(id)sender
{
myTimer = [NSTimer scheduledTimerWithTimeInterval:2.0 target:self selector:@selector(alphabutt:) userInfo:nil repeats:NO];
}
-(IBAction)alphabutt:(id)s...
How do I change the text value navigationItem.leftBarButtonItem?
In view A I did self.title=@"hi"
So when I go to B my back button has the text @"hi". now I want to change it to back
How do I do that?
...
Can you give me some information about using afconvert in iPhone to convert file formats?
Or let me know some links that give me basic information on afconvert. I want to know the commands used - what do -f, -d , -c etc. stands for in:
afconvert -f aac -d mp3 [input] [output]
Where do I mention the source data format, file format and...