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

3
votes
2answers
72 views
+50

Call segue from subview generated by iCarousel

I have a view controller (News View Controller in the image) and it loads a iCarousel with dynamic subviews, it works fine, but the problem is that i want to perform a segue when the user press a ...
2
votes
2answers
74 views
+50

Phonegap HTML5 audio does not resume playback after incoming phone call on iPhone

I have created an app with PhoneGap that plays music from an online stream. It continues playing in background while the iPhone is locked but, and it stops when an incoming phone call arrives. The ...
1
vote
0answers
29 views
+50

AVMetadataFaceObject Precision

I'm trying to use the AVMetadataFaceObject to get the yaw and roll of a face in a video. From what I can tell, the precision of the yaw is in increments of 45 degrees and the roll is in increments of ...
5
votes
4answers
142 views
+200

Get current news for a location

Is it possible in an iOS application to get current news for a particular location ? Is there some api available where I can pass location as parameter and get news for that location ?
0
votes
0answers
25 views
+50

CC3MeshNode is not affected by light in cocos3d

I have drawn a complex 3d shape using CC3MeshNode in cocos3d, but this shape is not affected (shadow and bright places depending on positioning) by the light source (lamp) that i set in the world, ...
0
votes
1answer
62 views
+50

In Google Plus API,GTMOAuth2ViewControllerTouch returning nil and access token although using right clientId,clientSecret

In iOS app, I am using below code to retrieve user's authentication in another view controller of which user is already logged in using google plus sign in API: GTMOAuth2ViewControllerTouch ...
2
votes
1answer
57 views
+150

AVCaptureSession front camera orientation

I'm using AVCaptureSession to record video, using AVAssetWriterInput I'm writing the video to a file. My problem is with the video orientation, using apple RosyWriter example, I can transform the ...
2
votes
1answer
84 views
+50

CAShapeLayer and UIImage

I have been trying to learn more about using CAShapeLayer animating it using path. The first thing came to my mind was having the effect of a "compressed" tennis ball against the edge before it ...
0
votes
5answers
101 views
+50

Custom UIBarButtonItem

I am trying to create a custom UIBarbuttonItem that uses just a png with transparency so that I only have an icon as button. When I try to set the button image, set the background as white, and set ...
0
votes
1answer
105 views
+50

Custom Unwind Segue

Similar to this question, I built a custom segue that displayed the destination view pushing down the source view from the top. Now I am attempting to build an unwind segue that accomplishes the same ...
0
votes
1answer
57 views
+100

Flash scroll indicators of UICollectionView after changing data source

I'm swapping out the data being displayed in my collection view by changing the datasource. This is being done as part of a tab-like interface. When the new data loads, I would like to flash the ...
0
votes
1answer
41 views
+50

Native UI Popover in Lua Application

I'm trying to use a native UI popover controller in an app I'm mostly writing in Lua. I'm planning on using Wax to integrate Objective-C and Lua. However, I don't know how to do this. I'd like the ...
4
votes
0answers
39 views
+50

MKOverlayView to be rotated

I have an overlay of route to be placed over a map. I have to adjust its rotation so that it overlaps exactly with the underlying map view. How can I achieve this? I have found the angle to rotate. ...
0
votes
0answers
58 views
+50

Why can't I authenticate to Facebook Chat in my iOS application?

I have been scouring the internet trying to find a solution to this problem. I understand the basic idea on how it is supposed to work, but I can't get the implementation to work and I can't find any ...
4
votes
1answer
75 views
+50

How to determine how far away a 3D rotated object is from the edge of the screen

I have rotated a view 50 degrees around the y axis using Core Animation. I want the edge of the view to be touching the edge of the screen. How can I do this? I know the length of the view and the ...
0
votes
1answer
68 views
+50

AFNetworking getting response JSON from the wrong endpoint

I am seeing a really weird and random issue in my code that I can't track down. I am getting crashes in my data model init methods when returning from AFNetworking JSON request methods. When the app ...
1
vote
0answers
126 views
+50

tapAtPoint on UIWebView subclass

I have subclassed UIWebView so that I can get touch events and also implemented this handy method. I'm curious, if this will work on an actual iOS device. I'm not at the office, so I don't know if ...