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.

learn more… | top users | synonyms (6) | iphone jobs

-10
votes
0answers
42 views

Smart phones GPS suppliers [closed]

Does anyone have idea about iphone/android/windows phones GPS suppliers and their GPS's Spec.Need a detail comparison between their mentioned spec.
0
votes
0answers
22 views

OAuth signature with RSA-SHA1 on iOS

I need help creating an RSA-SHA1 signature to be used in a 3-legged OAuth implementation on iOS. I was able to do this using HMAC-SHA1 using CommonCrypto.h, but this library doesn't seem to support ...
0
votes
2answers
46 views

How to programmatically move a slider at a set duration using IOS 6?

I have an iPhone application with a UISlider. When my user presses the play button, I want my slider to move from a value of 1, slowly, to a value of 100. The slider slides for the duration of the ...
0
votes
2answers
20 views

ios ffmpeg with support for floating-point ABI

How do I collect on ios ffmpeg with support for floating-point ABI? I have an application that shows the video, but slow decoding. ffmpeg compiled without support for floating-point ABI ./configure ...
0
votes
0answers
5 views

Take picture with overlay with pan,pinch position

I need to take picture with overlay image. I know how to take picture with overlay image. My problem is, i used CGRectMake for merge overlay image to cameraView. After moving overlay image to some ...
0
votes
0answers
10 views

Image Captured in Landscape mode rotating in iOS

I am presenting UIImagePickerController in Portrait mode with camera. I am capturing the image in Landscape mode. The UIImagePickerController is auto-rotating the captured image by 90 degrees. Why ...
-2
votes
0answers
45 views

Hiding the navbar in iOS7? [closed]

So I recently converted my app to the new Xcode 5 preview to get it ready for iOS7 and for some reason the code that I have is not hiding the nav bar on the first view, this the code I have in the ...
-2
votes
0answers
20 views

Fetch audio file from audio library and use it in our application [closed]

I just want to fetch any audio file from audio library of the iOS device and use it to make a another audio file by reducing the length of the original audio file. Thanx in advance.
1
vote
1answer
10 views

AVCaptureVideoPreviewLayer orientation on rotation

Simple question, how do I change AVCaptureVideoPreviewLayer orientation when iPhone is rotated from portrait to landscape mode and vice versa. I know this question has been asked many times and I am ...
0
votes
1answer
18 views

Download data from iPad in java application

I've tried to use JNA and libimobiledevice to access the memory of an iPad from a Java application, but I have encountered issues doing it this way. Is there a simpler alternative?
0
votes
0answers
20 views

Load local pdf file when UIButton is pressed

First Using Leaves project from Github to load pdf file. Second Using collection view controller to display segue Navigationviewcontroller is displaying Push segue from cellID to ...
0
votes
2answers
46 views

Compare two array and get the common value back in an array

To compare the two array I used NSMutableSet and then intersect the two sets to get the common result in an array. NSMutableSet *set1 = [NSMutableSet setWithArray:array]; [set1 intersectSet:[NSSet ...
0
votes
0answers
8 views

video capturing in iOS with remote control

we developed a hardware remote control that has a receiver that plugs into iPhone 4 30-pin plug or through lightning adapter in iPhone 5. The code for app was written by 3-rd party developer who left ...
0
votes
2answers
41 views

Stretch image on top of a button in order to push view controller

I have this image which is UIButton: I want to add some kind of gesture (pan gesture) to slide it to the right and I want the image to stretch to the right also like this: It's very similar to ...
-1
votes
0answers
25 views

Is the force shutdown system of smart phone independent with the normal phone operating system? [closed]

I think all of people who use smart phone experience the system halted. Most smart phone provide a way to forece restart, for example, when iphone is halted, both the Home button, Power button or the ...
0
votes
1answer
18 views

RestKit Mapping error when compiling release builds iOS

I am using RestKit in one of my projects and using it to map a json response. The mapping behaviour as expected on a fresh install or debug build. However when complied as a release build and ...
0
votes
1answer
26 views

Twitter API v1.1 for iOS

Where can I get the new Twitter API v1.1 for iOS SDK? I was using the REST API v1 before, now I am getting the message on hitting the URL: ...
0
votes
1answer
18 views

Is it possible for user of an ios app to like a URL on facebook using the facebook-sdk?

I am creating an iOS app where I want to allow the user to like a specific URL. I've tried to use the following code (as mentioned on the Facebook developers page) to like a specific url: **- ...
0
votes
0answers
11 views

how to oatuh authentication on vimeo

I am doing oatuh authentication on vimeo using gtm oauth framework. My problem is when i successfully get access token using gtmo framework then i give call to below function to get video json value ...
1
vote
1answer
19 views

iOS 6 issue Convert MPMediaItem to nadata

i had tried the below code. -(void)mediaItemToData : (MPMediaItem * ) curItem { NSURL *url = [curItem valueForProperty: MPMediaItemPropertyAssetURL]; AVURLAsset *songAsset = [AVURLAsset ...
0
votes
0answers
8 views

iPhone ELCImagePickerController UIImagePickerControllerMediaUR

I have been using ELCImagePickerController , iam able to get UIImagePickerControllerMediaType,UIImagePickerControllerOriginalImage,UIImagePickerControllerReferenceURL . but iam unable to retreive ...
0
votes
2answers
22 views

How to know whether ALAsset url contains video or image?

I am working on application in which I am getting an asset urls of the videos and images which are stored in library. I want to know dynamically the url contains image or video .. It is possible with ...
0
votes
2answers
14 views

unable to codesign using identities in this team no private keys available error in orgnizer of xcode ,how to resolve?

I am using xcode 4.5.1 i have created csr,cer and provisioning profile files, but when i drag provisioning profile file to xcode it gives error "unable to codesign using identities in this team no ...
0
votes
0answers
18 views

iOS - sharing failure but only when Facebook iOS app not installed

I'm currently using the iOS Facebook SDK to share text, links and pictures but am seeing strange behavior when the user doesn't have the iOS Facebook app installed. The post is failing with the ...
0
votes
0answers
20 views

RPC server integration library for iOS

I'm developing iOS5+ iPad application. Now it's time to implement server integration. The server works in such way: Application sends request1 to server. Server adds the request1 to the queue and ...
1
vote
4answers
58 views

Which method will be called when we hold the UITableViewCell

When we select UITableViewCell than - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath called. But which method will be called if we hold the UITebleViewCell. ...
0
votes
1answer
54 views

Save and reload button on View (where is the error ?)

sorry if I repeat the question, but being new I still have to learn your rules on how to respond and so on. Thanks to your help I got to this point:I can create 10 different buttons through AddButton ...
0
votes
1answer
34 views

Unhighlight row returns a max int on indexpath when user scrolls table with a cell highlighted

I have a UILabel as subview of my cell. When user highlight a cell the label text change it's color and when the cell is unhighlighted the color changes back, just like an usual cell textLabel. The ...
0
votes
1answer
32 views

Scrolling the scrollview from a specific point

I have a button in my application which is supposed to scroll the scrollview from bottom to top (like "dragging" the scrollview from the bottom of the screen. The problem is that everything is inside ...
0
votes
1answer
24 views

UIImagePickerController CameraDevice picks wrong device every other time (using ARC)

My app takes a video (using a custom overlay, in case that's relevant) where I have the cameraDevice set to front facing camera. 3 videos need to be taken, though the cameraDevice alternates between ...
-6
votes
1answer
56 views

Set border for particular text(string) in UITextView. [closed]

I know the workaround for setting the border for UITextView. The thing is, Can I set the border for particular text range inside an UITextView. If it is, Could you give me an example?
0
votes
1answer
18 views

How to Convert image url into EGO Image and add that Image into an NSMutable array?

I am getting the list of image url in JSON. Now I need to parse the image url one by one and convert it into EGOImage and add that in an array for performing animations with that images. Now the error ...
0
votes
2answers
27 views

setAnimationTransition apparently being ignored

So I have a button with an IBAction which is supposed to display a subview. The view is in the storyboard and I'm calling it was instantiateViewController. This works fine. I would like to animate the ...
-2
votes
1answer
41 views

compare two strings in cocos 2D iphone

i am getting ccString through the obstInfo->name . now i want to compare it with normal string "eagle".that means i have to compare CCString with normal string. in cocos 2D how to compare this. I ...
-3
votes
1answer
43 views

Add long press gesture for UITabBarItem [closed]

I want to add long press gesture for UITabBarItem in tab bar controller which help to show a sub view with some sub modules of the selected item.
0
votes
1answer
19 views

iOS: AFNetworking: repeat a block if token expired

I am writing a social networking app, where users will be able to follow other users and their activities. On the server side, each user is identified with a token that expires after 60 minutes. If ...
-1
votes
0answers
12 views

FB Page like button is not showing up

Please don't downvote without reading the full post. Cause i've already searched a lot, but couldn't solve my problem. I want to make a like button for my application's face book page. So i went to ...
0
votes
0answers
28 views

iOS tracking location while walking

Hi Friends i am new to iOS App development. I am working on iOS application in which i want to implement tracking feature. It means user can start tracking from where he is standing currently & ...
0
votes
3answers
39 views

How to make expandable/collapsable ImageView

I have many textViews on top of a scrollView and every textView has a custom button over it so that when user click that textView it should expand and when it click back then it should collapse to ...
0
votes
0answers
42 views

Set text inside UIEdgeInsets?

I want to insert a text inside the area which one surrounded by UIEdgeInsets in UITextView. Take a look at the following image Here '1'(surrounded by border for easier understanding) --> The text ...
0
votes
1answer
40 views

Make iPhone app Bilingual [duplicate]

I'm new in iPhone app, I want to make my app bilingual "Supports both English and Arabic" by pressing a key to convert the language could anyone tell me how to do this programmatically? Note: I ...
1
vote
2answers
31 views

MKMapView - cant locate user location while AirPlane mode is on

I'm developing with MKMapView class, When running on the device (iPhone5) and with AirPlane mode ON , Wi-Fi ON, and the property of MKMapView:showsUserLocationsetting to YES,the delegate of MKMapView ...
0
votes
0answers
26 views

How to make images compatible with Retina Display (iPad) Rails App?

I am currently using Paperclip and AmazonS3 to upload images to my Rails App. Everything works perfectly on my desktop and the images look great, But for some reason when I use my iPhone or an ...
1
vote
1answer
31 views

UIView anchorPoint->drag->rotate transform causes flickering

Goal I am trying to replicate the UI Dynamics pull animation/behaviour. I have setup a UIPanGestureRecognizer on my UIView for dragging it around. When drag occurs, I set the touch point as ...
0
votes
1answer
10 views

php symfony 1.1 detect android or iphone

i want to know whether it is a iphone or android phone, i used below code for detection, But this displaying as Mobile for both Android or iphone devices..... But need like Android/iphone/ipad.... ...
6
votes
1answer
115 views

human body measurement of height,weight and other part

I am developing an tailor's application,and i want to measure the size of the human body for its cloth. see in image after all measurement it display result like.. is this possible? i search ...
0
votes
1answer
44 views

Headers dissapear when after overriding TableView.Scrolled

I have been in a pickle with this problem for a while now. When I try to manually handle how my table behaves while scrolling, everything works fine, except all my section headers dissapear. What I ...
1
vote
2answers
43 views

iPhone UITableViewCell SwipeGesture

I wanted to simply animate custom view in a custom table cell by swiping left or right in that cell. I am loading the cell from the xib. This is the code I used to populate the cell from the xib. - ...
0
votes
1answer
46 views

how to make textView expandable by clicking on a button

I have many textViews on top of a scrollView and every textView has a custom button over it so that when user click that textView it should expand and when it click back then it should collapse to ...
0
votes
0answers
25 views

calculated app size not showing correct in iOS

My app has some content dumping in document folder periodically. And i have used the below code to calculate my total app consumed memory size. But i see its different from what i see from ...

1 2 3 4 5 3515