iOS 6 was announced by Apple on June 11, 2012 and released on September 19th, 2012.

learn more… | top users | synonyms

0
votes
1answer
3 views

What about iPod #define constants?

When I try to define my constants here, i dont have any experiences about iPod: #define IS_IPHONE ( [[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone ) #define IS_IPHONE_3 ( ...
0
votes
0answers
2 views

How to implement UIProgressView to display the progress of a method of another class?

I've been reading about delegate pattern. But answers and examples for this simple work are explained too bad and report many erros, expecially 'cause they are olds and I want to develop it in iOS6 ...
0
votes
0answers
4 views

Change “DONE” button color when playing Youtube video embedded in UIWebView

I am using UIWebView to display Youtube video. Everything works fine but I want to change "DONE" button color to my custom color when the Youtube video is playing. I have googled but not solved yet.
0
votes
0answers
9 views

UIScrollView with dynamic number of views and Auto Layout iOS6

i am struggling with an UIScrollView in iOS6 using auto layout. What i am trying to do is setting up a scrollview holding a number of subviews (UIViews). Those subviews are created dynamically in a ...
0
votes
0answers
6 views

Working on iOS emulator, but not on phone (Phonegap and Google maps API)

I'm using Google Maps API and Phonegap to connect to a server and receive information and coordinates from a SQL database. It works perfectly when I run the emulator on Xcode, but when I run it on ...
1
vote
0answers
17 views

Glow around the sides of a rectangle

I am trying to create glow just around the sides of the rectangle. The rest of the rectangle should be filled clear color. I create a UIView with CGRect of certain size and then - ...
0
votes
0answers
3 views

Navigation and Tab Bar combination

I have an app in which I have 4 sets of controllers accessable through a Tab Bar controller. Each of these sets contains a Map in a View controller and a Table View Controller. I segue between the ...
0
votes
0answers
8 views

iOS Corebluetooth - Sometimes won't connect to a device until I do a network reset

I've been occasionally running into an issue where my app will not reconnect with a specific bluetooth LE device until I reset the network settings on my phone (I am guessing this clears the bluetooth ...
0
votes
2answers
36 views

how to find nearest latitude and longitude form current place?

I have a dictionary with a collection of n number of latitude, longitude and address. I want to calculate which (latitude and langitude)point is closest from current user location(latitude ...
-1
votes
1answer
14 views

Related to pass push notication + passbook + ios 7

do we need device to test the push notification. can we implement pass with out using a push notiification, i mean if we wants to update a pass from the server, do we really require a device
0
votes
1answer
6 views

zooming on Mapview Crashes the app on iOS6

i am using mapview. when i zoomin on map it shows did recieve memory warning and crashes the app in iOS 6 devices .but its working fine in below versions. Its taking more memory when i zoom in but ...
0
votes
0answers
21 views

facebook sdk from ios 6 to back ios 5

first i developed my project in ios 6 using facebook sdk 3.5.2 but because of some reason now I not have upgraded MAC & ios, now i have to work on ios5. thats why I moved my project to ios5. for ...
-1
votes
2answers
32 views

Hide activity indicator in status bar [duplicate]

I am using pull to refresh table and in pull to refresh table there is already a activity indicator. and when i pull the table then calling a web service then the activity indicator in status bar ...
4
votes
2answers
65 views

Is it possible to tag blocks?

I am working on a turn based iOS game and trying to populate my list of games the player is participating in. for (unsigned i = 0; i < [matches count]; i++) { // Only load data for games in ...
0
votes
0answers
27 views

detect why iOS app went into background, hardware home or incoming push notification

I want my app to behave differently if the user pushes hardware home button, versus other reasons it may go into background. I think I have sorted out the main cases, except I can't tell the ...
0
votes
1answer
13 views

How to maintain JSON array order with Restkit managed objects

So i've got some JSON data and I want to maintain the order in which that data is received with restkit and managed objects and I havent been able to find the best way of doing this. When the order ...
1
vote
0answers
13 views

ACAccountStore saveAccount no working on iOS5 but working on iOS6

ACAccountStore saveAccount no working on iOS5. But it work well on iOS6. I was read already 'Migrating tokens to system accounts' . and did follow code example of there. Code was changed partially ...
-3
votes
0answers
28 views

Xcode 5 and UILabel on iOS 6

I just downloaded the new Xcode 5 Developer Preview to start development on iOS7. So, I continued to work on my project and I only tested on the new iOS7 Simulator. And everything went fine until I ...
1
vote
1answer
32 views

How to go to next/previous CoreData record/managedObject

Basically what I want to do is to switch between CoreData elements (next/previous). This is what I've tried so far, but it doesn't work. -(void)plus { UINavigationController *navController = ...
0
votes
0answers
17 views

NSLayoutConstraint between Navigation Bar & ViewControllers View

Can we add a NSLayoutConstraint between self.navigationcontroller.navigationbar and a view inside the self.view. Here self is a UIViewController instance and _textField is a subview of self.view What ...
0
votes
0answers
26 views

URL is not loaded after download from AppStore

I have a little UIWebView on my app where I load image from NSURL. Kind of a banner. It works on Emulator also when i deploy app on test Device. I submitted my app to AppStore and they approved it. ...
0
votes
0answers
10 views

How to consume SOAP webservice in iOS 6

Where can I learn how to consume a SOAP web service in iOS 6. I have xCode 4.6 installed. I understand the basics of web services and such. I have taken a look at WSDL2objc but I can't get it to work ...
1
vote
1answer
20 views

GMSCoordinateBounds IncludingCoordinates not working properly in Google Maps SDK for iOS

I'm trying to use the fitBounds method to fit all my markers in the google maps camera view. So I have my markers stored in markersArray and I use the following code to init GMSCoordinateBounds with ...
0
votes
1answer
17 views

Why are my mutable arrays and table views behaving unexpectedly?

I'm building a sign-in app. It has two table views. One lists people who have visited before (existingNames), and one lists the current people signed in (names). At certain points in my code the only ...
-3
votes
1answer
34 views

Mutiple textfield in UIAlertView

I am getting error when displaying three textfield in the aletview. Please help. self.alert = [[CustomAlertView alloc] initWithTitle:@"My Alert" message:@"Please enter information." ...
2
votes
1answer
44 views

How to get my iPhone app listed in iPhone's native Photos app share menu?

Is it possible to list my iPhone app in iPhone's native photos app's share/send menu? Some links says not possible. But then how facebook, twitter apps are allowed as those too are native apps not ...
0
votes
1answer
43 views

Switch/Change the Cells in UICollectionView on click of a UIButton

The problem is i have a UICollectionView and i have a custom cell inherited from UICollectionViewCell.Now what i have on UICollectionView is two buttons left and right when i click the right button ...
1
vote
1answer
39 views

Mall Map Integration into iPhone Application

Hello everyone i am stuck into one problem. I am working on Application in which Mall Map required to integrate. I need to display Mall map like this: I have done proper r&d but not found any ...
0
votes
0answers
14 views

GADBannerView pushes UI elements from scrollview when hiding on iOS

I've been working on a mobile application for iOS platform. I was trying to put an ad banner in my app while I faced something ... I'd say strange. I have a master-detail view workflow when the user ...
0
votes
0answers
8 views

Storing path throught nested arrays in ios 6 with storyboard

I'm trying to write an application with storyboard for ios 6,a table view with 13 cells,and,every single cell when tapped,push the scene to another view controller.All the 13 cells have his master ...
0
votes
0answers
7 views

ECSlidingViewController swipe gesture issue on View Controller

I'm using ECSlidingViewController for my app for the slide out menu and having a imageview on my all view controllers. It works perfectly but when i to the right when the menu controller(Slide view) ...
2
votes
1answer
18 views

xcode 4.5.2 and IOS SDK 6.0 debug not working?

I have connected Xcode and my device through USB. In Organizer window my device is showing but near the schema option my device name does not showing for debugging. My Mac OS Version 10.8.2 and Xcode ...
0
votes
0answers
18 views

Not able to access Keychain(KeychainItemWrapper) in app downloaded from Airwatch

I am trying to store and retrive some keys in Keychain using apple provided KeychainItemWrapper class. This works fine in case if I install the app from xCode or iTunes. But in case if download the ...
-1
votes
1answer
18 views

Show an hidden view

I will ask you if you can help me to show some hidden views. Also in my app I've 2 hidden view: one on the left and the second one on the right. I wanted to show this hidden view by using 2 button and ...
0
votes
1answer
6 views

Get pathes for the Magical Record store files

Getting Cocoa error 260, which says file not found. NSArray *inputPaths = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:[[[NSPersistentStore ...
0
votes
1answer
16 views

Deleting Core Data record from Detail View of SplitView Controller

I'm trying to delete a CoreData record directly from the Detail View of the SplitViewController. This is what I've tried: [self.detailItem.managedObjectContext deleteObject:self.detailItem]; But ...
0
votes
1answer
31 views

how to double tap zoom and two fingure zoom uiimage in uiscrollview

hi i have actually multiple images in uiscrollview. actually i want to implement image scrolling like in iphone image gallary. am downloading images from url to imagearray then i can successfully ...
0
votes
0answers
5 views

Track the launching event of camera App in iOS

I need to track the launching event of camera app via my iOS app that I have developed. Is this can be done in iOS 5 and 6? If so how? P:S My app is running in the background always
3
votes
2answers
42 views

arabic text getting stored as “???”

What I am trying to do is save the arabic text in My SQL. My SQL Table has collation as utf8_general_ci I have textfield in iPhone app and I am saving data using PHP. PHP Code looks like below. ...
0
votes
0answers
13 views

IOS consuming wsdl web service in xcode using wsdl2objC

I tried consuming a webservice using classes generated from wsdl2objC i have this error Thread 1:EXE_BAD_ACCESS (code=2,address=0xc) on the method - ...
0
votes
0answers
13 views

Integrating Yelp API into iOS with OAuth

I'm trying to integrate the yelp api into my ios app. However, I'm new to oauth and after reading through yelp's examples (which are 3 years old) and the nxtbgthng/OAuth2Client documentation, I'm ...
0
votes
0answers
32 views

How to disable the animated hiding toolbar items?

I have a simple interface of two table views, navigation controller and toolbar. The toolbar of each view has the same bar items (constructed using storyboard). When I push a new view toolbar items ...
1
vote
0answers
21 views

Unable to display macro enable word file in UIWebview

I'm trying to display MS office files(word,powerpoint,excel) using UIWebview some of the files have macros enable UIWebview is unable to display these files any idea why this happen? is there a way to ...
0
votes
0answers
18 views

Can anyone suggest me any javascript library or example for 2d terrain generation without using webgl?

I am writing ios application and in webview I need to show map ( I need to generate terrain kinda unlimited when user scroll add new terrain part and show data on that coordinates) of terrain. I found ...
1
vote
1answer
36 views

How do you pass core data corresponding to a row selected in a table?

I am learning how to use Core Data. I have an app that fills out all the variable of an entity labeled User. I then take these users and load them to a table. At this point the users can be selected ...
0
votes
1answer
13 views

Upload a photo to a specific album

I post a photo via the method startForUploadPhoto -> https://developers.facebook.com/docs/reference/ios/3.1/protocol/FBGraphUser/#id But I could not find a way to specify the album name, currently ...
0
votes
1answer
11 views

Upload to webserver from multiple devices

Ive developed an app which needs to upload a small .xml file to a web server, there will be around 15 devices running this app uploading around 15 .xml files each per day. The files need to be ...
0
votes
2answers
31 views

How do you correctly get a row value from a table view?

I have implemented code that returns 0 every time. I'm trying to remove a string from a mutable array with the row value selected after hitting a button. Related code: - (IBAction)remove:(id)sender ...
0
votes
1answer
22 views

collectionView didSelectItemAtIndexPath

In collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath method i m trying to load array of audio files into collection view cells but based on indexPath row it is skipping cell at index 0 ...
0
votes
0answers
15 views

MFMailComposeViewController + Juice + disable rotation

I am not sure why the view for mail composer is still doing rotation when I have -(BOOL)shouldAutorotate { return NO; } any ideas on how to disable the rotation only for mail composer view in a ...

1 2 3 4 5 153
15 30 50 per page