Questions tagged [ios6.1]

iOS 6.1 was released by Apple on Jan 28, 2013. iOS 6.1 is an SDK used for building and developing apps for iPhone and iPad.

iOS 6.1 was released by Apple on Jan 28, 2013. It supports the same devices like and brought some updates, like larger "Report a Problem" button in Maps and new music controls on the lock screen when you double-press the home button.

Also see and for more information.

229 questions
4
votes
2 answers

UIPageViewController programmatically turning pages does not update Page Indicator

When I programmatically turn the page in a UIPageViewController using a method similar to this answer, the Page Indicators are not updated. Swiping to the next/previous page updates the page indicators as expected. What do I need to do to update…
DiscDev
  • 38,652
  • 20
  • 117
  • 133
3
votes
3 answers

ios universal app only show 3.5 inches screen instead of 4 inches screen

I have an app designed for universal devices.And I have all of the different dimensions of the launch images and app icons ready. It was fine running on iphone 4, iphone 5 with iOS 7 devices and iphone 5 with ios 6.1 then, i found it was running…
Kiddo
  • 5,052
  • 6
  • 47
  • 69
3
votes
1 answer

Locale returns the wrong currency symbol in iOS simulator

I have a problem retrieving my locale currency symbol. NSString *currencySymbol = [[NSLocale currentLocale] objectForKey:NSLocaleCurrencySymbol]; I was expecting the £, instead I still get the $. In my system…
Houman
  • 64,245
  • 87
  • 278
  • 460
3
votes
4 answers

iOS - deleting row from UITableView doesn't animate

I have a very frustrating issue. I have an app with a UITableView. When I am removing a cell from the table view, it is removed from the data model and then I call the following: -(void)removeItem:(NSIndexPath *)indexPath { [self.tableView…
Daniel Retief Fourie
  • 626
  • 2
  • 10
  • 20
3
votes
2 answers

void SendDelegateMessage(NSInvocation*): delegate (webView:decidePolicyForNavigationAction:request:frame:decisionListener:)

I am loading my webview with running image(banner) while continuously load webview . but sometimes i got warning of void SendDelegateMessage(NSInvocation*): delegate (webView:decidePolicyForNavigationAction:request:frame:decisionListener:) …
Mahesh
  • 317
  • 1
  • 3
  • 17
3
votes
2 answers

How to implement the cropping feature similar to Android Phone (default) in iOS.?

I have used BJImageCropper Class from Github to implement the functionality for cropping but I want the Image Cropping like Android Default Crop Box. Like this:
dhruvvarde
  • 179
  • 1
  • 10
3
votes
2 answers

ARC Retain Cycle appears after updating to iOS 6.1

After updating to iOS 6.1, I'm getting this warning in AFImageRequestOperation.m and AFHTTPClient.m from AFNetworking framework: Capturing 'operation' strongly in this block is likely to lead to a retain cycle Based on this answer, I can fix a…
Maziyar
  • 1,913
  • 2
  • 18
  • 37
3
votes
1 answer

XCode 4.6: iOS 6.1 - CFBundleVersion and CFBundleShortVersionString errors when validating

I've changed the "Bundle version" and "Bundle versions string, short" values seemingly a hundred times with all different variations 1.2, 1.201, 2, 1.2.1...etc. Also, I've changed the version numbers in the target > Summary tab. Has anyone had…
whyoz
  • 5,168
  • 47
  • 53
2
votes
2 answers

Issue with Google Places API in iOS 6.1?

I'm allowing users to search places in my iPhone project. For that i'm using Google Places API for iOS. I'm using the following code in my project. - (void) makeAutoComplete :(UITextField *) textField { NSLog(@"Searching for…
Prabhu
  • 840
  • 11
  • 28
2
votes
1 answer

ios- issue of over sizing with aviary's own view controller in ios 6.1

Tested the app in both ios 6.1 and 7.1. Issue of view controller arised when tested in ios 6.1, both on simulator and the physical device. The horizontal scroll menu in ios 6.1 is not completely viewable. Attached the screen-shots of the running…
Piyush Mathur
  • 1,617
  • 16
  • 33
2
votes
1 answer

Is there sense to run unit tests on ios6

We recently started new project and XCTest is our framework for unit testing. We also support ios6 in the way it works and looks as expected. Unfortunately XCTest doesn't work for ios6. Do you think it is valuable to have possibility to run tests on…
Eugen Martynov
  • 19,888
  • 10
  • 61
  • 114
2
votes
2 answers

GoogleMap API Gives Wrong Coordinates for Direction between two Points

I am using GoogleMap API for showing draw direction between two points on GoogleMap. i want to give support on iOS 6.1 so i use GoogleMap i know about iOS7 recover this. using below code for parsing and get Steps for coordinates to draw polyline on…
jayraj m.g.
  • 625
  • 5
  • 18
2
votes
1 answer

UINavigationController did't works on iOS7 like on iOS6.1 simultaneous

I have this problem, on iOS 7 the app works fine: On iOS 6.1 the bar did't work. The space was wrong, the button position and all the objects are displayed on wrong position.
Gavjr
  • 151
  • 5
2
votes
5 answers

how to run ios6 simulator in xcode5?

I upgraded my xcode to xcode5,In the directory /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs I got iPhoneOS6.1.sdk/ and iPhoneOS7.0.sdk/ In the directory…
welkinwalker
  • 2,062
  • 3
  • 18
  • 21
2
votes
1 answer

IOS Box2d version 2.1 DebugDraw not working

I am new to box2d, i have to deal with the Physics Engine. i am creating fixtures and Physics body and set position. Now i want to view physical objects in Debug Mode. i have visited many forums and tried code, but no luck. i am using the following…
Ahsan
  • 41
  • 4
1 2
3
15 16