0
votes
0answers
4 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 ...
0
votes
0answers
7 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
0answers
9 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
18 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 ...
0
votes
1answer
28 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 ...
-10
votes
0answers
50 views

Best books to learn iPhone iOS 6 Development [closed]

I want to start programming for iOS 6. Is there a particularly order to read this books? If so, could you order it for me? Are any of this books unuseful? Thank you! Ps: see my pastebin for the ...
0
votes
1answer
26 views

Move UICollectionView items around

I want to move the items in a UICollectionView in the same way that you would move books in iBooks or icons on the home screen. I tried LXReorderableCollectionViewFlowLayout and ...
-5
votes
1answer
46 views

Set border for particular text(string) in UITextView.

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
2answers
26 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
36 views

Add long press gesture for UITabBarItem

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
0answers
23 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
32 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
39 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 ...
6
votes
1answer
88 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
2answers
37 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
40 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
2answers
41 views

Passing an array of Strings to Server with Post Method iPhone

In my server Php Code, I need to process an array of Strings. In android I do this List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(); for (int i = 0; i < ...
0
votes
2answers
33 views

AddSubView on UITabBarController

I try to add UIView on UIViewController: AppDelegate *md = (AppDelegate*)[[UIApplication sharedApplication] delegate]; UIView *view = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 150, 44)]; [view ...
0
votes
1answer
20 views

Keeping one section open at a time in UITableView based accordion view based on apple sample code TVAnimationsGestures

I'm building an app with a UITableView-based accordion view. This code is based on Apple sample code which can be found here or here. In the sample code, the problem I'm trying to fix is there, so I ...
2
votes
2answers
70 views

Using a file (CSV) instead of using CoreData

An app I'm building contains a catalogue of thousands of items, which need to be stored on the phone. Currently I am achieving this through CoreData, as logically it seemed like the best place to put ...
0
votes
3answers
39 views

Perform a function at a particular time

I am trying to do an app which make a song sing at a time set by the user. The user should set the time by opening the app. Even after the user force kills the app after setting the time, I must be ...
0
votes
3answers
32 views

Reusing a View Controller with both push and modal segues

I have a View Controller that I want to re-use. I want to use it with a push segue when editing some data and I want to present it modally when adding new data. I do need a bar in the top with a ...
0
votes
3answers
41 views

how to download and display server images if scrolldown the scrollview in iphone

I am new to iPhone programming. Using below code I can able to download and displaying all images form server. But in server I have more than some 100s of images are there. so Using below code I can ...
0
votes
0answers
16 views

Cocos2d-iPhone: getChildByTag not behaving as I'd expect - beginner

In Cocos2d-iPhone I'm trying to set up a reference to a layer from a class outside of the running scene. Whenever I try to access the layer by the tag I've set it to, however, Cocos2d is returning a ...
2
votes
0answers
26 views

Encapsulation when moving from xib to storyboards?

With xibs, you could call different initializers: - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { // Fetch Note... // Initialize Edit Note View ...
0
votes
1answer
27 views

how to get the time duration of recorded video in iphone app

I am recording video in iPhone I want to get the recorded duration time of video. Is there any way to get the recorded video duration time. Here is the code where I get the recorded video along with ...
0
votes
1answer
14 views

Shifting UIview Controls upword whne load iad ads

I have developing one in that implementing inAppPurchase after user buy app from inAppPurchase all ads renove all that are done but now my problem is that after removing iad ads my tableview will ...
0
votes
2answers
38 views

Register for remote notifications outside of app delegate

Everything I have seen thus far indicates that I would setup a push notification alert in my AppDelegate. However, my app requires that the user goes through a registration process, and I do not want ...
0
votes
2answers
28 views

Can adjust intensity LED before take picture in UIIimagePickerController in iOS

I building app open Camera by using UIImagePickerController but I want before take picture, I can adjust intesity of LED. I think if can add UISlider to UIImagePickerController to adjust intesity LED ...
0
votes
0answers
18 views

Authentication using TouchXML

I am using third party library to authenticate and get some data. Using touchXML I got other data but, I am confusing about username and password. I am using xml/soap. Can I authenticate username or ...
-2
votes
0answers
27 views

How to open Camera and take picture with adjust intensity LED before in iOS [closed]

I want to develop an app open camera and take picture with adjust intensity LED before for Iphone. It's mean I turn on LED and adjust intensity of LED and then I open Camera by using ...
0
votes
0answers
10 views

How to tell if AFOAuth1Client has already been previously authenticated?

I am using the AFNetworking Subclass AFOauth1Client and it keeps on having me reauthenticate the application to twitter how would I have the app detect if it was authenticated already. AFOAuth1Client ...
0
votes
1answer
25 views

Take contents of UITextField and insert it into an online form, press button, and get result back

I hope that this flow chart adequately describes what I would like to happen. The webpage in question is here. It is the top textbox and the "Latin to English" button. You can type in "Semper" as ...
0
votes
2answers
31 views

Allow UIInterfaceOrientationLandscape during UIWebView video playback

My iPhone app is a portrait orientation only app and in my app I have a UITableView that has a UIWebView in the first UITableCell. The UIWebView shows an embedded youtube video. When I click on the ...
0
votes
0answers
30 views

Rotating a view controller in an Objective-C application

I want to "rotate" a view controller by going to another view controller with the exact same objects but with the view controller in another orientation. Is there any way to do this? Thanks.
-1
votes
1answer
52 views

Possible to return an object into a completion block?

I work with Core data and I want to call a function for returning an object. This object is completed in this function with AFNetworking into a completion block. I want to know if it's possible to ...
1
vote
2answers
72 views

Objective-C Thread Safe Counter

I am trying to keep the network activity indicator under control in a thread-safe way. Here is the way I am currently doing, but I think there must be a better way to do it. I was looking of using ...
0
votes
0answers
34 views

UIPageControl images

I have a question I have a page control in my app. It has circle images to tell you what page you are on. How can I change the images from circle to something else? Thanks.
-5
votes
0answers
23 views

error when installing in iphone 5 showing linker erros,All static library creating problems. But working fine in ipad [closed]

problem when installing in iphone 5 showing linker erros,All static library creating problems. But working fine in ipad architecture armv7s clang: error: linker command failed with exit code 1 (use ...
0
votes
1answer
11 views

AVAudioPlayer or MPMusicPlayerController for playing simentanously & in background

I have the following needs to audio: it needs to be able to play at least 2 local audio files and it need to support playing in the background, so the user can close the app and multitask while the ...
0
votes
1answer
42 views

Is it possible to have different style font when on a selected tab in UISegmentedControl?

I have written this code to set font attributes for UISegmentedControl for normal state and highlighted state but its not working. Please help me point out why. NSDictionary *attributes = ...
0
votes
2answers
36 views

Is there a way to know which direction one iPhone is from another?

Presume I have two+ iPhones connected to the same server. Using the sensors built in the iPhone and any possible calculations based on their information, is there any way to tell which direction one ...
0
votes
1answer
21 views

detect request from mobile app not from browser in php

Hello guys i know how to detect mobile browser in php but my case is different now. if i am requesting php web service from app using NSURL than php fails to detect that it is mobile request or not . ...
0
votes
3answers
51 views

How can i change UITextview content

I'm fetching datas from my api and trying to write datas to UITextview but when I try this I'm getting error. These codes are feching datas from api and write them in uitextview: NSOperationQueue ...
-7
votes
3answers
58 views

Where can I find sample code for make a calendar for iOS and how to use it [closed]

I've a problem (not only one...). My boss wants an app for iPhone that has the calendar at the right of the screen (like a sidebar). In the rest of the page he wants add all the meeting, birthdays and ...
0
votes
0answers
52 views

Scrolling a scrollview hides all unhidden subviews

I have two subviews and two uibuttons nested within a scrollview. When the buttons are tapped, each of the subviews are unhidden and appear underneath their respected uibutton. What's weird is ...
0
votes
2answers
53 views

how to play video on splash after loding default image in iphone?

i want to play video of 4 second in app after default black image is launched what can i do? please help me my code is below -(void)viewWillAppear:(BOOL)animated { NSString* moviePath = ...
-7
votes
2answers
77 views

What are the drawbacks of using Storyboard [duplicate]

Why are many organisations not using Storyboard for developing iPhone apps? What are drawbacks of using Storyboard?
1
vote
3answers
57 views

Is GPS Spoofing possible in iOS sdk?

Is there any way in iOS to spoof the GPS location. I mean to say show user different coordinates not the real one ? Thanks!
1
vote
0answers
26 views

iOS: MapKit: How can i set the number of annotations that search request fetches

I have the following code for retrieving restaurants inside my application NSLog(@"getting restaurants"); MKLocalSearchRequest *request = [[MKLocalSearchRequest alloc] init]; ...

1 2 3 4 5 1135