Specific to Apple's iPhone and/or iPod touch, but inapplicable to iPad. For questions not dependent on hardware, use the "iOS" tag. Another tag to consider is "cocoa-touch" (but not "cocoa"). Please refrain from questions regarding the iTunes App Store or about iTunes Connect.
1
vote
2answers
83 views
Facebook connect with Phonegap iOS
I'm building a Phonegap application for iOS and I'm trying to include the Facebook connect framework.
I followed all the steps twice from https://github.com/phonegap/phonegap-facebook-plugin , but ...
2
votes
3answers
79 views
How to change cancel button title in UIImagePickerController?
Currently I'm working on a multi-language application and I want to change the Cancel ,Use and Retake button titles of the UIImagePickerController. How can I do that?
-3
votes
2answers
78 views
How to call a bool type function with several arguments objective c [closed]
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
if ([[NSUserDefaults standardUserDefaults] boolForKey:@"HasLaunchedOnce"])
{
...
4
votes
1answer
171 views
Occasional black screen after resuming iPhone app
While testing a new build of our iPhone app, we're occasionally seeing the app window go completely black when resuming the app sometime after applicationWillEnterForeground. The only way to make the ...
0
votes
2answers
68 views
UIImage to base64 not working [duplicate]
I'm trying to convert a UIImage to an base64 string and upload it.
This is my code:
NSData *imageData = UIImageJPEGRepresentation(self.image, 0.2);
imageDataBase64 = [NSString ...
1
vote
0answers
30 views
Does Apple still approve Lite versions? [closed]
Does anyone have any recent experience of submitting a separate Lite version when there is an existing full version of an app on the App Store? I know that Apple's guidelines changed recently and I am ...
1
vote
2answers
40 views
How to get API_KEY in Android Transliteration
Need help... I am working on transliteration in Android and it requires API_KEY, but as I'm new to Android, I don't know how to get that API_KEY, Can anybody tell me, what I have to do to get that ...
9
votes
3answers
142 views
KVC vs fast enumeration
Which of the following is faster and why?
CGFloat sum = 0;
for (UIView *v in self.subviews)
sum += v.frame.size.height;
or
CGFloat sum = [[self.subviews ...
0
votes
3answers
66 views
How make update of my UILabel in xcode
i have my code for parsing:
NSError* error = nil;
NSString* text = [NSString stringWithContentsOfURL:[NSURL URLWithString:@"http://site.ch/parse.php"]
...
3
votes
2answers
99 views
GAITrackedViewController and UITableViewController
With Google Analytics for iOS v2 Google suggests subclassing their GAITrackedViewController class in place of UIViewController. What do we do in the case of UITableViewController?
source
#import ...
6
votes
3answers
94 views
How to 'Build & Run' on multiple destinations at once in Xcode 4?
How can one run a project on multiple destinations (say, iPhone, iPad and iSimulator) at once?
There are 2 related questions:
Xcode 4 - One Click Build to Multiple Devices?
Run on simulator and ...
6
votes
2answers
115 views
AVAudioPlayer and Random Slowness
This question may be too vague to pass StackOverflow's standards, but I have to try posting it because I am running out of options... :/
Long story short: I have an app that experiences random ...
0
votes
1answer
70 views
corona sdk - collision detection on object that changes size
Hey I'm wondering how to check for collision on an object that grows each time it hits a certain object. I can get it to grow and recognize collision, but as the object grows, the collision hit box ...
-1
votes
1answer
86 views
Reading from text file - Objective C
I am trying to familiarize myself with objective C, and my current goal is to read a list of items in a text file and store them in a NSString array.
Currently this is what I have:
NSString ...
1
vote
0answers
23 views
Unable to reset HTML video on iPhone to start from the beginning
Using a shared video object I'm loading and playing different source movies dynamically. Resetting the current time like this works fine on the desktop;
$('video').bind('loadeddata', function () {
...
-5
votes
0answers
54 views
Add a subview to mkmapview [closed]
Add a small subview at tap point on ios map view in such a way that added subview also zoom and scroll when we scroll and zoom mapview. Any help?
-3
votes
0answers
37 views
Why I can't cancel SMS(MFMessageComposeViewController) if I receive APN when write sms?
When I write SMS, I can receive an APN. At this time, I can't add recipients, neither can't cancel the message.
Who can tell me what's wrong? What should I do?
Thanks very much!
-2
votes
4answers
84 views
Simulate cursor and click
I want to simulate a mouse pointer and click event on any object in the view. Until now I am able to simulate a mouse pointer i.e. The mouse pointer moves by dragging it on the view. Now I want to ...
-1
votes
0answers
35 views
UIScrollview with inner gradient
Is it possible to have a inner gradient effect to a UIScrollView so that they are uniform around the content size of the UIScrollView.
-1
votes
1answer
43 views
My iPhone app doesnt work without update
I can't open my old version app with some extra options. I used old version of app even when in app store shows that is passible to download the newest one. But when i reboot my iphone the old version ...
-1
votes
3answers
60 views
How to resign numeric texfields in iOS?
I was wondering how could I resign my numeric textfields?
I have a loop in my viewDidLoad method that creates the texfields, how can I make that whenever I touch anywhere in the view, the app ...
0
votes
1answer
32 views
Should I subclass CCSprite or should I use a composite object?
I'd like to keep track of a sprites original location on the screen (CCPoint). The users will have the ability to move a sprite to different locations, but if they tap on the sprite, I'd like it to ...
0
votes
1answer
28 views
Graph network library
I need library for drawing network graphs (Not pies, charts or simmilar). Something like used in this app. Additionally it should detect tap on each node. I`ve found this but it have very bad ...
-1
votes
0answers
44 views
error:variable is not a CFstring
Somehow the code below crashes my app:
-(void)addbank
{
NSString *trimmered1 = [self.acctype.text stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
}
my output is ...
-1
votes
1answer
73 views
iOS perform Wipe Animation (similar to keynote application) [closed]
I want to perform an animation similar to the wipe effect in Apple's Keynote application: I am trying to reveal images with wipe effect.
My question is: can we perform all the animations with the iOS ...
-1
votes
1answer
50 views
Xcode iphone checkered effect image [closed]
I have 1 imageView and 2 pickerView with numbers 1-9 in it.
For example if user select 3 on first picker and 4 on second, I want to show how image in imageView would be cut.
This select 3 and 4 means ...
0
votes
1answer
51 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{
...
1
vote
1answer
46 views
E-mail as required during iOS registration
I'm working on iOS application that requires user to register first. One of the design requests is to ask user to provide e-mail address that should be validated by the back-end server afterwards.
...
-3
votes
1answer
53 views
NSURL image from URL iPhone
I'm getting error while getting image from url for some images, and again for other images not.
NSURL* imageURL = [[API sharedInstance] urlForImageWithName:[NSString stringWithFormat:@"%@", [photo ...
0
votes
1answer
29 views
Unable to display 2 GLKViewController at the same time
I am building an app that is required to show to opengl views, one fullscreen and the other one smaller as an overlay. The two views represent 2 completely different apps.
Right now it seems I can't ...
1
vote
2answers
55 views
How to check which segue was used
I got two segue's which lead to the same viewController. There are 2 buttons which are connected to the same viewController using 2 segues. In that viewController I need to check which button was ...
0
votes
2answers
96 views
JSONKit changing float values on decoding JSON object from webservice in iphone
Float values are getting changed after parsing with JSONKit. The problem occurs after calling objectFromJSONString or mutableObjectFromJSONString.
The JSON response is fine before this method is ...
0
votes
2answers
72 views
UILabel with dynamic height not working for same string in iOS
I using below code in my application to get dynamic height for UILabel.
CGSize maximumLabelSize = CGSizeMake(231, FLT_MAX);
CGSize expectedLabelSize = [labelString
...
0
votes
1answer
76 views
How to display category and sub categories in ios UItableview? [closed]
I want to display categories and sub categories in a tableview but the subcategories want to get displayed without clicking on the main category.
-11
votes
1answer
126 views
iPhone app's first screen portrait and other screens landscape mode [closed]
I would like to force first screen to be in portrait mode and other screen to be in landscape mode.
My app is a navigation based app, so if I force first screen to be portrait, it feels a little ...
1
vote
2answers
61 views
can we directly access the SQLite data base of core data
In an iphone application i am using core data to manage all my data, now my question is can we directly access the data base which has created by core data using our own queries?
is it possible ?
...
0
votes
1answer
22 views
How to retrieve only 3imagepaths or id from database in iphone
I am new to i phone programming.I am storing imagepath and audiopath in database.Now i want to retrieve imagepath form database i getting all imagepaths but i want to retrieve only 3 imagepaths ...
2
votes
1answer
52 views
how to create menus in cocos3d
I want to create a menu in cocos3d. I failed to find correct solution for this. I tried to create one using the cocos2d concept.
CCMenuItemImage *item1=[CCMenuItemImage ...
70
votes
7answers
9k views
Xcode version 4.6.2 (4H1003) compiler error
I just updated to Xcode version 4.6.2 (4H10003) and tried to run a previously working application project in the simulator and received the following error and the build failed.
PCH file built ...
1
vote
1answer
56 views
Forcing a viewcontroller to be portrait monotouch iphone
I have a view controller in my app that want to show always in prtaint mode. The objects of this screen is added in runtime and based on the protaint mode. It is my first viewcontroller.
I tried some ...
7
votes
6answers
423 views
How to handle different orientations in iOS 6
ADDED:
You can access this project on github
ios6rotations
Sorry guys for asking the question about screen rotation in iOS 6 but this is really a pain in the ass..and I still can't understand it ...
1
vote
3answers
64 views
Sort NSMutableArray with custom objects by another NSMutableArray [duplicate]
I have 2 NSMutableArrays. First array contains custom object intances with property NSString *itemID, second array contains only from NSString objects with same values of itemID, but in another ...
1
vote
2answers
63 views
Responsive site, unresponsive on iPhone
The following page scales down in a desktop browser when the viewport is decreased
http://rocoru.com/blog/
However, when viewing from the iPhone itself, the desktop version is still shown regardless
...
1
vote
0answers
36 views
NSSNotifiaction integration for iAD in project
I have tabbed application and i like to present iAd on each view at different position according to space availability , so i thought of add functionality of iAd in app delegate and create its ...
2
votes
1answer
81 views
odatagen: Failed to generate proxy classes. Please verify the metadata (iOS)
Im working on Open Data Protocol (OData) which is a standardized protocol for creating and consuming data API's.
OData builds on core protocols like HTTP and commonly accepted methodologies like REST ...
2
votes
0answers
70 views
iOS state preservation and container views
I have a view controller in a storyboard that is using a container view. Both have restoration identifiers set. The parent is being saved and restored just fine. The child however is not. Neither ...
1
vote
0answers
90 views
'webkit-text-size-adjust' not working when sent from Outlook 2010 - HTML email signature
I'm ready to explode with frustration with a HTML email signature I am building, it's fine when attaching the signature using Thunderbird, but sending from outlook 2010 (which my client uses to send ...
0
votes
1answer
253 views
ignoring file [path] missing required architecture i386 in file
I'm quite new to Xcode and Iphone development and ran into the following problem:
I opened a new project and added *.h and a *.a files (which I recived from a certain device vendor).
I get the ...
0
votes
3answers
153 views
Calling presentModalViewController from AppDelegate not working
I am working on with Facebook SDK 3.0 for my app (base SDK:iOS5) and using Scrumptious app (a sample app) as a tutorial. Where there is no open session for Facebook a login view controller is ...
0
votes
1answer
248 views
How to autoshare on facebook and twitter in ios 6?
I m using facebook and twitter share in my application ,here i want to share the default link and text without shows the share windows,i tried many ways but still i did not get the solution.
this is ...



