iOS is Apple's operating system for mobile devices, such as the iPhone, iPod touch, iPad and Apple TV (2nd generation) devices. It shares a lot with Mac OS X, but is optimized for touch-based interfaces.

learn more… | top users | synonyms (2) | ios jobs

0
votes
2answers
75 views
+50

Add together two UIAccelerationValue's?

I am not sure if this is a stupid question or not so please bear with me here. Anyway I have two UIAccelerationValue's. When I individually NSLog their results I get values like this respectively: 1. ...
-2
votes
1answer
161 views
+200

IOS MWPhotobrowser issue

I am using MWPhotobrowser library as a photo viewer in my app. There is an option one can set e.g.. Mbrowser.wantsFullScreenLayout=YES; This shows the photos in fullscreen mode. All works good. ...
3
votes
2answers
70 views
+50

Auto Layout and in-call status bar

I'd like to ask about Auto Layout and in-call status bar. Here's a simple scenario that demonstrates my problem: Create project with "Use Storyboards" enabled Add "View Controller" and enable its ...
0
votes
1answer
43 views
+50

iOS Core Audio : Converting between kAudioFormatFlagsCanonical and kAudioFormatFlagsAudioUnitCanonical

I need to convert between this format : format.mSampleRate = 44100.0; format.mFormatID = kAudioFormatLinearPCM; format.mFormatFlags = kAudioFormatFlagsCanonical | ...
5
votes
4answers
216 views
+50

No suitable mapping model found for core data migration

I'm trying to perform an iOS Core Data migration that requires a MappingModel. Core data is not able to use the mapping model for some reason and it falls back to an automatic lightweight migration. ...
2
votes
2answers
70 views
+50

How to block anonymous user in XMPP

In order to implement chat functionality in my app, I have integrated XMPP framework in to it. There is no buddy request functionality hence users can send messages to other users without sending a ...
20
votes
1answer
476 views
+50

iOS app crashes when headphone is plugged or unplugged

I'm running a SIP audio streaming app on iOS 6.1.3 iPad2 and new iPad. I start my app on my iPad (nothing plugged in). Audio works. I plug in the headphones. The app crashes: malloc: error for object ...
-1
votes
7answers
153 views
+50

Update Text Label From Another View

I have an NSTimer that runs every 10 seconds and is kicked off from LandingController.m. It continues to run as you go to other views in the application. I want to be able to (when a certain ...
0
votes
1answer
56 views
+100

Cannot open NSManagedDocument file seems to be corrupted after a few opens

I'm trying to open a NSManagedDocument after creating it. It seems to be unable to open the document after a few times of successfully opening the document. If I change the document name or ...
0
votes
1answer
71 views
+50

UIImage RBG Values Change when Saved to Device Library

I am working on a project that requires image pixel manipulation. What I am doing now is using UIImagePicker to receive a UIImage from the devices library. I then convert it to a CGImage, get the RBG ...
6
votes
1answer
451 views
+500

Is there a good free barcode scanning SDK for non-autofocus cameras on iOS?

I understand there are many questions similar to this on StackOverflow, but this question is very specific so I'm not looking for the typical "Zbar" answer here. I use the Zbar SDK for barcode ...
0
votes
1answer
44 views
+100

Blinking/flickering of website text (text disappearing for moment then reappearing) on iPad and Chrome

If you visit http://www.tekiki.com on the iPad using Chrome, the site renders fine at first, but after a second or two, all text on the page gets hidden and re-appears a few moments later. It is ...
0
votes
1answer
48 views
+50

How to retrive the .xml extension attachments from mail by using MailCore to Sample iPhone app

How to retrieve the .xml extension attachments from mail by using MailCore for iphone? I used MailCore to download the attachments from my mail to my sample iPhone app. I getting Inbox subjects ...
2
votes
4answers
46 views
+100

Under what conditions is Apple's 'advertisingIdentifier' reset?

Other than the user manually resetting it, has anyone observed other things that will cause the ADID to be reset? OTA OS Upgrades? iTunes Backups?
0
votes
0answers
32 views
+50

Fruitstrap deploy to device fails at [ 70%] VerifyingApplication

I have gone through the instructions provided by Ted on this group. When I put in the following, with my path to the .app: ./fruitstrap -d -b ...
0
votes
0answers
29 views
+50

Cocos2d set display frame Async

So I am making a kids game which is like the following : I have around 118 different CENTER_OBJECTS like Apple , Ball , Cat etc which will be placed in the center and ALPHABETS revolve around it , ...
0
votes
1answer
37 views
+50

iOS Google Analytics SDK - weird session length

I can't seem to understand these following stats from google analytics engagement behavior loyalty: This indicates, that the average first session length is 24s, and out of the 42,530 user's 40,289 ...
1
vote
0answers
60 views
+50

iOS Custom Container VC and children requiring a specific orientation

I've tried many ways of searching for answer to this problem, but a lot of what I see is mainly locking rotation issues with UINavigationControllers at the root view controller. In my project, I have ...
4
votes
6answers
311 views
+100

scrollview is showing only the last added subview

I am getting strange behavior with UIScrollView subviews, the idea is to create programmatically an instance of UIView with a customized nib file which is a form in my case, fill that form with data ...
0
votes
1answer
63 views
+50

CAAnimation with CALayers occasionally creates jerky animation (video included)

My app takes a still photo and animates the mouth region to emulate talking. However, about 1/4 of the time, some of the hidden calayers will flash continuously throughout the animation. Here is what ...
5
votes
4answers
193 views
+200

Hid navigation bar, but when I transition to the previous view (popped) it shows the old back button temporarily. Why?

I have view controllers in a navigation controller (root: RootViewController, second: ReadingViewController), but in the second view controller I want to disable the navigation bar for a UIToolBar (as ...