0
votes
1answer
59 views

UITableView Delete Control and Delete Button not synced

I have seen a very strange behavior of my table view: I have enabled the UITableViewEditingStyleDelete, which shows in the editing mode at the left side of the tableView a red "-" control. If I tap on ...
1
vote
3answers
82 views
+100

Symbols not found for architecture i386 - But works for iOS device

I am facing a strange problem here, I am trying to integrate the libkml C++ project sources into my iOS project. The project compiles independently fine, but when it comes to linking through this line ...
2
votes
1answer
43 views

Wait until the next layout update (end of layout update cycle) before executing some code

I have code that invalidates the layout of a UICollectionView. I want to wait until the layout has updated before executing some code. Does the layout get updated in the main queue? And if so, ...
-4
votes
1answer
56 views

Is using iPhone IMEI number acceptable after May 1? [closed]

can we use iPhone IMEI number in code after may 1st?As using UDID is forbidden now, Does same issue go for IMEI number?
0
votes
1answer
33 views

Loading large HTML string into UIWebView using javascript

Usually, when I want to load an HTML string into a webview using javascript, I use something like this... NSString *htmlString = @"HTML String"; [webView ...
0
votes
1answer
36 views

how to reset the view position to origin after scale

There's two views in my app, viewA(green) and subviewB(red). The initial state of my app is as following: I use the following code to change the transform of viewA: CGFloat scale = 0.4; ...
0
votes
1answer
79 views

Core Data: NSManagedObjectContext Not Saved / Fetch Request Fails Until App Quits & Relaunches

I've got a Core Data backend that's exhibiting some strange behavior. The first time I run my app (in the simulator) my NSFetchRequest will never find matches even when given identical items multiple ...
0
votes
1answer
41 views

why in app purchase method run on simulator perfectly but not on real device iOS 6?

well this time mi problem is, I did Create an in app purchase method, for buy 2 products,is my first time so, I did learn from the tutorials of raywenderlich ...
0
votes
0answers
15 views

NSDate formatter for Facebook Graph created time

2013-04-24T21:52:19+0000 This is the timestamp from Facebooks Graph API. What would I set the date formatter to be able to translate this into a relevant time?
0
votes
1answer
66 views

Orientation change issue in iOS6

My application is working fine for iOS5. But for iOS6 I am getting the following orientation problem. I have a ViewController VC1. when you rotate (change the orientation to ...
3
votes
1answer
84 views

Nil object reference in objective C

I am calling a class method from an outside class in order to obtain an object reference, in this case a reference to a UIImage. I can successfully call it and get it back from within myOtherClass ...
0
votes
1answer
54 views

Device Rotation Not Working in IOS 6 Works Well in IOS 5 am I doing anything wrong?

-(BOOL)shouldAutorotate { if (appDelegate.isOrientationSupport) { return YES; } else { return NO; } } -(NSInteger)supportedInterfaceOrientations{ ...
1
vote
1answer
63 views

Core Plot unable to draw a line

Based on the example RealTime presented in the library Core Plot, I tried to reimplement it on my project. I am able to update y axis, add a symbol, draw label, etc. But I'm totally unable to draw ...
0
votes
1answer
39 views

CIImage filter is stretching my image vertically

I have an image which I'm using in a custom UITableViewCell. The image is a black triangle on a transparent background and I'm using a CIColorInvert filter to make it a white triangle on a transparent ...
0
votes
1answer
111 views

CGAffineTransformMakeRotation not resizing view in iOS 6

When I use CGAffineTransformMakeRotation on a view it does not resize the view. It cuts part of the view out. It works just fine on iOS 5.1, but for some reason it does not work on iOS 6. Could ...
0
votes
1answer
68 views

Why do not use pointer variable

I am a completely newbie in iOS app development. I am following a tutorial, which has the following code snippet in the BIDAppDelegate.m - (BOOL)application:(UIApplication *)application ...
0
votes
2answers
65 views

NSObject call to self gives XCode error

I have a class WebServices that inherits from NSObject. I am using xcode4.2 and ARC turned on. When I created the class, there was no other method in the NSObject lie viewDidLoad or init. The issues ...
0
votes
1answer
112 views

NSURLConnection status code for Asynchronous request iOS 6

Currently using sendAsynchronous from NSURLConnection to make post and get requests, but can't get the status code in the response. Most post suggest the use of NSURLConnection and its delegate ...
1
vote
2answers
90 views

iOS - Presenting a UIViewController inside anther UIViewController

I dont have a very good understanding on the topic, so please bear with me I am trying to display a UIViewController inside another UIViewController. I feel like there aren't enough examples out ...
0
votes
1answer
49 views

Stopping touch propagation in cocos2d

We are working on a game in cocos2d in which there is a possibility of getting a trivia question. The trivia question is implemented as a new, transparent CCLayer on top of the gameboard, which ...
1
vote
1answer
80 views

ipad modalviewcontroller when dismissed does not go to the viewdidappear of the mainviewcontroller

Hi I have a modalview controller that pops up on the main menu after the user successfully logs in. This is used for additional roles that needs to be saved on the userdefaults. The modal gets ...
3
votes
1answer
124 views

CGRectMake doesn't work for custom frames in viewDidLayoutSubviews

This is the code I'm using: -(void)viewDidLayoutSubviews{ CGSize screenSize = [[UIScreen mainScreen] bounds].size; if (screenSize.height <= 480.0f) { self.img.frame = ...
0
votes
3answers
173 views

Can't auto rotate in iOS 6

In an app i'm maintaining there's a rotate that should happen in portrait and portraitupsidedown mode. (all the rotation are enabled in the summary panel.) - ...
0
votes
1answer
195 views

How to detect that my app can't access the user's Twitter account in iOS 6?

After a user has allowed my app to access their Twitter account, they can still go into the Settings App and revoke access by hitting a switch: My app needs to show the correct logged out graphics ...
-2
votes
1answer
129 views

Problems with UICollectionView - one selected cell implies other selections

In my collection view is allowed multiple selection. When i tap an item, the system automatically select an item that is not visible. Here's my code: -(UICollectionViewCell ...
0
votes
0answers
30 views

ios state restoration data is lost when device is rebooted

We've been implementing the new iOS 6 UIKit state restoration/preservation methods into our app, but have found that the state is being lost if the device is rebooted. Researching this we found: ...
0
votes
1answer
30 views

UIBarButtonItem Custom Font Wrong Size (Updates on touch)

You can see it happening here: http://www.screencast.com/t/mSveqUgPe1 Similar to my question here: UIBarButtonItem Custom Background Appearance 'Jumping' after flip transition It appears to ...
3
votes
1answer
26 views

How to save the first row of text in a UITextView as a UIView's title?

I'm looking for a behaviour similar to the Notes app. It automatically saves the first row of text as the views name. My code below saves the text entered upon pressing Return as the UIView's title. ...
3
votes
1answer
298 views

Why does auto layout in table view cells cause the table's content size to be incorrectly changed?

I'm using Xcode 4.6.1 and I have an iOS 6.1 app. It has a table view that drills down into another table view. The second table view uses custom cells to display its data. However, there is a problem ...
3
votes
2answers
201 views

Override UIAppearance property for MFMailComposeViewController

I am using the UIAppearance protocol to set the background image of UINavigationBar objects throughout my app. [[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"image-name"] ...
0
votes
3answers
135 views

How to tile a UIImage vertically while only streching horizontally on iOS?

I have an image that can be stretched in the horizontal direction, but need to be tiled vertically (one on top of the other) to fill my view. How could I do this? I know that an image can be made ...
0
votes
2answers
353 views

unwind with custom segue on UINavigationController pop via “back” button

Simple storyboard setup: UIViewController with UINavigationController. On a table cell click a custom segue pushes a new UIViewController onto the navigation stack. All good. But then pressing the ...
1
vote
3answers
56 views

Is there any way in iOS to browse through Core Data objects from the Detail View, a function similar to “Notes” app

I can't find much info about this, so I don't know exactly where to start. What I'm trying to do is to add a UIButton on my Detail View, so that when I'll press it, it will load the next Core Data ...
1
vote
0answers
37 views

UINavigationController animates on push but not when tapping back button

I'm doing a storyboard segue when tapping a navigation bar button item, from view controller A to view controller B, and it works fine with a push animation. But when I tap the back button (no custom ...
0
votes
2answers
192 views

When and how to dismiss UIActivityViewController

I create and present UIActivityViewController in my app with custom UIActivity items in it. When I tap UIActivity icon, UIActivityVC slides down and my modal view controller is presented. However, ...
0
votes
1answer
54 views

Huge delay between viewWillDisappear and viewDidDisappear

Here is the log output 2013-03-16 14:02:59.301 Echo[65406:4503] child viewWillDisappear start 2013-03-16 14:02:59.303 Echo[65406:4503] child viewWillDisappear returning 2013-03-16 14:02:59.303 ...
1
vote
0answers
40 views

Make a custom UIView perform the Speak action

In most Apple-provided controls, you can tap and hold on the text, and get the copy/paste menu, which usually has "Speak" at the end. I have a custom control (UIView descendant) I want to do the same ...
1
vote
0answers
51 views

Image Blur/Quality Loss when Masking in iOS

I am masking an image (left) with this function - (UIImage*)maskWithMask:(UIImage *)maskImage { CGImageRef maskRef = maskImage.CGImage; CGImageRef mask = ...
1
vote
1answer
107 views

Shake no longer works after a UIAlertview

I have tested this on both an iPad and the iPad Simulator and after one successful shake, the motionBegan method is never called. The following is a snippet of my program. - ...
0
votes
1answer
221 views

UIActivity with custom image

Is there any way to made UIActivity to display custom images? By default it created metal-style-icons. Is there any way to disable it? Secondly, can I use UIActivity instead of UIActionSheet? Are ...
4
votes
1answer
161 views

Issue rotating UIImage

I'm developing an iOS 6 app for iPad. I've developed some code which rotates a UIImage. It works great with square images, but when the images aren't square they get cropped, so you only see a part of ...
0
votes
1answer
209 views

How can I authorize more than one Dropbox account in an app?

I'm looking to update one of my apps (which is a Dropbox client) to have support for multiple accounts, but I can't seem to find a way to do it. I have analyzed the SDK many times and no matter how ...
0
votes
2answers
274 views

how make a any time animation for iOS 6 xcode 4.6?

well how make a any time animation for UIViews, or UIImageViews in xcode, but mean while the user is in the app, the animatons show's any time, my animation is like this: - (void)showAnimation { ...
0
votes
0answers
38 views

Change from one ModalViewController to another without showing the parent view

In my iOS/iPhone app I use a root view that shows a login form after startup (presented as modal view). After the user entered the login data, another view shall be shown: [self ...
4
votes
1answer
179 views

iOS 6.1 is acting differently with willTransitionToState

I'm subclassing my UITableCell in order move the Minus image and the Delete image in EditMode to the oposite direction. It worked great so far but in iOS 6 when I use reloadData on my tableView the ...
0
votes
1answer
33 views

ios map- couple of line while am draw a line

in my app i want to do while the user touch and move on the map i want to draw couple of line. how can i do this. am using this below code for draw a single line. code: - ...
1
vote
0answers
46 views

ios map- Creating view on ios map using latitude and longtitude points

I have locating places on ios map using pin point and lines. Now how create a view on that locating place. In this above picture is i located the places using pin and lines. now i want to create a ...
1
vote
1answer
134 views

Best Practice for Rendering Context of free hand drawing on iPad 3

I currently have a free hand drawing iPad app, that adds lines to a mutable path via quad curves in the touches methods then calls setNeedsDisplayInRect on the new area. Problem is when the drawing ...
1
vote
1answer
229 views

iOS 6 – Force a rotation for a UIViewController inside a UINavigationController

I have a UINavigationController where all UIViewController in the stack are portrait, except the last one, which is landscape. My current implementation shows the last view controller in portrait on ...
2
votes
1answer
112 views

UICollectionViewFlowLayout doesn't use integral frames

I have recently started using UICollectionView, and am a bit confused about the UICollectionViewFlowLayout. It would seem that the frames for each cell in the collection view are calculated with equal ...

1 2 3 4 5