This tag should be used only on questions that contain Objective-C code or are about Objective-C features. The tags "cocoa" and "cocoa-touch" should be used to ask about Apple's frameworks or classes. Use the related "ios" and "osx" for issues specific to those platforms.

learn more… | top users | synonyms (2)

-1
votes
2answers
151 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. ...
-1
votes
7answers
148 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
55 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
70 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 ...
0
votes
1answer
44 views
+50

Using circular progress bar with masked image?

I am working on a circular progress bar for custom game center achievements view and I have kind of "hit the wall". I am struggling with this for over two hours and still cannot get it to work. The ...
1
vote
1answer
5k views
+50

AVAudioPlayer initialization error

I initialize my AVAudioPlayer instance like: [self.audioPlayer initWithContentsOfURL:url error:&err]; url contains the path of an .m4a file The following error is displayed in the console when ...
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 ...
4
votes
5answers
307 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
0answers
51 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 ...
0
votes
2answers
85 views
+300

Attempting to save an image is throwing an exception using image captured from OpenGL view

I am trying to save an OpenGL buffer (whats currently displayed in the view) to the device's photo library. The code snippet below works fine on the simulator. But for the actual device it is ...