Tagged Questions
-6
votes
1answer
30 views
How to get rate this app link to your iPhone App [duplicate]
I am making a simple iPhone App. I need to get the link to rate that app. I am not getting how to get that link.
Can anyone help me to solve this issue?
0
votes
1answer
20 views
Changing a UITableViewController dynamically via location
I am in the process of building an app, for the record I am using the code from the ECSlidingView controller. I would like for my app to use the GPS to pull data from my web interface letting the user ...
0
votes
1answer
19 views
ios - moving frameworks broke the project
I recently added the Social.framework and Accounts.framework to my ios project. It was placed on top of the navigator area and I dragged those two into the frameworks folder. Then it showed in red ...
0
votes
1answer
15 views
ios - why do most instructions say “uncheck copy items into the destination folder” when adding libraries to project?
It seems that the files should indeed be copied into the destination folder...no? What am I missing here?
Most of the time various tutorials seem to say that button should be unchecked. But it ...
0
votes
1answer
8 views
Different textures on iPhone app launch image?
I am trying to make a launch screen that is very similar to the first screen on the app. However, I notice that the iOS 5 & 6 navigation bar "textures" are slightly different.
Is there a way to ...
0
votes
1answer
26 views
App release Code Sign error on xcode
I tried to build release version of my project for my iPHone device. (I choose Products->Archive), then I got the following error:
Code Sign error: The identity 'iPhone Distribution: XXX' doesn't ...
0
votes
2answers
38 views
adding multiple pins on google map in ios
I want to add multiple pins on a google map, while it is being loaded.
I have a list of Latitude and Longitude values of nearby locations.
How can I show all these locations on the map with a pin. I ...
0
votes
1answer
33 views
Device Rotation Not Working in IOS 6 Works Well in IOS 5 am I doing anything wrong?
-(BOOL)shouldAutorotate
{
if (appDelegate.isOrientationSupport)
{
return YES;
}
else
{
return NO;
}
}
-(NSInteger)supportedInterfaceOrientations{
...
0
votes
0answers
53 views
Move to next Dynamically created UITextfeild
I am generating dynamic textfeilds and want to move to the next textfeild
i have two sets of textfeilds both containing 3 textfeilds(sets are x and ƒ(x)) what i want to do is if i entered x and hit ...
0
votes
0answers
12 views
iOS Powerpoint Viewer trouble
I want to implement a PowerPoint viewer in my application. I tried to use Quick Look Framework. But it doesn't support transition animations and full screen.
Can someone help me to implement these ...
0
votes
1answer
26 views
Common toolbar and selectors. Do I need to copy the code every time?
I decided to have a custom toolbar within my navigation controller. To do so, I created this common toolbar class, which every single one of my view controller will add to its navigation item.
...
0
votes
2answers
26 views
Applying gradient to UIImage - how to remove color invertion?
I'm applying gradient to UIImage, all i want it to be dark on the bottom and slowly turn to clear or light gray in the middle.
It is mostly ok, but i have a problem that my image colors invert in some ...
0
votes
0answers
35 views
How to share video on facebook programmatically in iphone?
I used the following parameter but it is not working and instead the image is uploaded to the facebook.I stored the video in bundle and referenced it by storing in AVAssest and then passed the object ...
-1
votes
1answer
29 views
I want to hide the secure info on screen while capturing the photo in iphone [closed]
I want to make an application in which I want to hide the secure information on screen while taking the picture in iphone for some security purpose.please help me if any one have any suggestion...
0
votes
2answers
88 views
How to save two imageviews in one image view after drawing in iphone
** i have two image views one for background and one for foreground and i am drawing on foreground imageview.for the erase functionality i am doing this because i do not want to erase background ...