The Cocoa Touch frameworks that drive iOS apps share many proven patterns found on the Mac, but were built with a special focus on touch-based interfaces and optimization.

learn more… | top users | synonyms

2
votes
3answers
38 views

How do I take a blurry picture (like from an iPad 2) and sharpen it using iOS API's?

I have a picture of a barcode from the iPad 2 (or iPod touch 4G). I need to enhance the picture using sharpening techniques and other image enhancements so I can run the picture through a barcode ...
1
vote
1answer
17 views

Compiling expat for iOS - Command /bin/sh failed with exit code 77

I am trying to import the libkml library into my iOS project. I realised that expat libraries cannot be linked (?) and so have to build the expat sources for it again. I found a SO link where a ...
0
votes
1answer
39 views

How to force scrollRectToVisible: animated:

I want to make the scrollRectToVisible:animated: work even when the contentSize is only set to 1 page size. The reason: I have multiple pages in the UIScrollView but want to maintain the hard-drag ...
0
votes
1answer
23 views

Searching an Array for a value

I have an array with this values: ( ( John, "John.plist", active ), ( Lucas, "Lucas.plist", inactive ) ) What I need is to get the index of the ...
2
votes
1answer
46 views

ios: duplicating UIView, with UIButtons in it

I'm trying to understand how to make a duplicate of a uiview that has a set of uibuttons inside it. Been trying to follow this question/answer but I'm really confused atm: Make a deep copy of a ...
-4
votes
4answers
47 views

Converting Date to proper format when the Value obtained from the Db is in format 2012-07-13 00:00:00.0 [duplicate]

I know there are lot of questions on this topic . But I am not getting a proper solution to my problem.I am retrieving Date from db , I am getting the Output as as 2012-07-13 00:00:00.0 . I am ...
0
votes
1answer
20 views

Update Supporting Files from Web Server

I am writing an IPhone application in witch I downloaded files and photos locally in the Supporting Files folder ( in the right panel of xcode ), these files are downloaded also in a web server, ...
-3
votes
0answers
38 views

Getting a month string from an integer fitting the language settings [duplicate]

I am currently working on a project in which we load data from a database. Depending on what number is loaded from "m_date_month", I want to format a different string (check the code sample). As of ...
0
votes
3answers
44 views

Customization of lazyTableImages sample code

I want to use code from Apple's lazyTableImages sample project to realize async (non-blocking) loading of images (UIImage) from URL addresses. I already have URL addresses for the images to be ...
0
votes
0answers
28 views

NSURLConnection, NSMutableData & Cocoa error 3840

I have a standard asynchronous NSURLConnection operation and NSMutableData that loads json from a web service. - (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse ...
1
vote
3answers
46 views

Getting the right tint for back button

I am trying to achieve this look for my back button: But no matter where I sample the shade of green in photoshop, it never comes out correct. For example: Any suggestions on how I can achieve ...
0
votes
2answers
22 views

How to check whether an Entity is related or not to another entity

I am new to Core Data I have 2 Entities Routine and Exercise that are related as Routine.exercise and Exercise.routine. User Routine has a name and so does user Exercise. I tried and also tried jsut ...
0
votes
0answers
20 views

What could cause this kind of error when inserting into a collection view?

I get a really disgusting error when inserting into a collection view. I use autolayout, and everything has been setup through interface builder. Error is here as was too big to paste. Has anyone ...
0
votes
2answers
29 views

Adding a UINavigationController

I'm trying to add a UINavigationController to my ViewController. And when I launch the app, it gives me just a black screen and dont init the app. This is my AppDelegate.m : - ...
1
vote
0answers
21 views

Can't save core data managed object context when device passcode locked

I'm creating a persistent store coordinator like this: NSURL *storeURL = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:@"Mydatabase.sqlite"]; NSError *error = nil; ...
2
votes
0answers
28 views

VoIP equivalent of Coretelephony

I have Coretelephony working for monitoring incoming and outgoing calls, however, I also needs this functionality for VoIP calls. Is there are framework with similar features as coretelephony but for ...
-1
votes
1answer
57 views

Detect touch on the left/right part of the screen

I want to create a game, but I need to detect if the screen was touched on the left or the right side of the screen (in landscape). How can I do that?
0
votes
1answer
17 views

Release history of the app in iTunes Connect

Do you guys know how I can see the release dates of the previous versions of my app in iTunes Connect? I had shipped several updates in the past and I would like to know when exactly I uploaded them ...
0
votes
0answers
12 views

Rounded UIWebView with UIModalPresentationPageSheet over the top leads to corruption

I've got a UIWebView that has rounded corners applied to it using the following code: self.bodyWebView = [[UIWebView alloc] initWithFrame:webViewFrame]; self.bodyWebView.backgroundColor = ...
0
votes
1answer
26 views

TableCell init with coder and init with style

I'm trying to save custom cell objects and later on show them. But fail to understand the mechanism totally i have: - (id)initWithCoder:(NSCoder *)decoder { if((self = [super init])) { ...
0
votes
1answer
24 views

navigation bar too big after adding custom background image

I'm trying to customise the navigation bars throughout my app. The navigation controller has been created in IB. I used the following code to add a custom image to the bar. The image is 320 x 44 ...
0
votes
0answers
22 views

NSMutableParagraphStyle shifting text down slightly?

I have a UILabel which uses an NSAttributedString to display "GAME OVER". I have positioned the text in IB and it displays in the correct place. My problem is that I want the text centred onscreen but ...
1
vote
1answer
36 views

Is there a way to dynamically allocate or assign values to ivars of a class at runtime in Cocoa / Cocoa Touch?

I'm sure we can dynamically determine iVars of a class at run time. Is there any way to allocate the determined iVars during run time? TIA..
-3
votes
0answers
74 views

NSArray.count or [NSArray count], what should I use? [duplicate]

"Count" method in NSArray returns the number of objects in it. Recently I have noticed in my colleague code that he frequently uses myArray.count to get the number of objects in NSArray. I should ...
1
vote
3answers
75 views

Display UITableView like UIActionsheet style?

I have been trying to display UITableView like UIActionsheet showFromRect: style. Is there any way to do it programatically or Do I need to use image for that. Please check the below image...
0
votes
1answer
56 views

Strange color in UIActionSheet

Today I added one UIActionSheet to my project and it displayed very strangely: As you can see, the action sheet displays only text - no buttons - and the background is completely black. I just want ...
1
vote
2answers
46 views

How to show a progress bar while encoding to .mp3, using LAME on the iPhone?

I'm using LAME to encode a .caf audio file to .mp3 on my iPhone app. All works perfectly and I'm just having a difficult time trying to figure out how to log the progress of the audio file conversion ...
-4
votes
1answer
52 views

How To Automatically Launch One ViewController After Another in Objective-C [closed]

I am having an issue trying to call one method after another automatically containing view controllers in each. So I am trying to Automatically Launch MailComposer and when the user hits send I want ...
-1
votes
2answers
26 views

What UI class / element is used for volume changes, video play / pause [closed]

I am trying to figure out if this is a standard UI element that is public. Specifically, I would like to use the version for pausing (that is used in media playback) to show that my app is paused.
0
votes
1answer
29 views

Having trouble getting the date from a JSON call

I am pulling a date from JSON in the format of "1900-01-01T00:00:00-06:00" The code I am currently trying (and failing to parse with) is this NSDateFormatter *formatter = [[NSDateFormatter alloc] ...
2
votes
1answer
24 views

How do I draw into a bitmap without antialiasing/interpolation in iOS?

I'm trying to programmatically draw into a UIImage like so: - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. ...
0
votes
4answers
67 views

How to create a dynamic size array

What I am trying to achieve: I have a UITableView and I want to check whether the table was selected or not and keep in an array easy to access the YES or NO values that corresponds to that row so ...
0
votes
1answer
30 views

position view relative to tab indicator

I've been given a UI that uses a UITabBarController, and in one of the tabbed ViewControllers, a View (an arrow as a UIImageView) needs to be positioned relative to the tab indicator (the arrow needs ...
0
votes
0answers
16 views

Avoid clossing MKAnnotationView when tapped

I've used a nice and beautiful custom callout as shown in the picture. The callout is just a MKAnnotationView with the shape of a bubble. When I have to show it I add it into the MKMapView's ...
0
votes
1answer
41 views

How do I programmatically draw to a display in iOS?

I have a method of drawing to the screen that has many benefits for my application except for the small issue that it doesn't work... at all. I have an iOS program with a UIImageView widget and I'm ...
0
votes
1answer
39 views

UIButton - Frame and Bounds Zero - Page Based Application

There is a similar but unresolved question bound and frame for a UIButton I am using Storyboards with autolayout and The "Page Based Application Template" I am able to reproduce this problem by ...
1
vote
2answers
72 views

Multithreading in UITableView

I'm new to MultiThreading. I have an UITableView with few rows. When i select one row there will be some action taking place in the server. So that will take some time to finish the action. So when i ...
-5
votes
0answers
51 views

setObjectForKey: object cannot be nil (key: unique-vendor-identifier) SKPaymentTransaction [closed]

i saw this crash in our logs. i checked out the log and concluded that it's related to SKPaymentTransaction. how is it possible that the unique-vendor-identifier becomes nil?
0
votes
1answer
86 views

Preventing iPhone app for inactive state

I need screen ON/OFF callbacks and voice call callbacks. But i am receiving callbacks when my app is in foreground. But i am unable to get delegate callbacks when my app is in background. How is it ...
1
vote
1answer
65 views

Accessing the top view controller from the app delegate

I need my AppDelegate to be able to obtain a pointer to my current displayed view controller (have explored visibleViewController for navigation views, but a more generic version would be better) and ...
0
votes
2answers
44 views

How to save a locally loaded HTML file in UIWebview

I am writing a rich text editor using UIWebView. To do this, I used a template file for a starter. Then when user finishes editing but has not published yet, I would like to save the current content ...
0
votes
2answers
33 views

Detect a touch on a subview in a main controller

I have a main view controller class which contains a UIScrollView and a number of subviews like cards. Each card is an object and it is covered with a UIButton. I want to detect a tap on the UIButton ...
-1
votes
0answers
39 views

Why doesn't NSNotificationCenter avoid duplicate NSNotification observations? [closed]

Look at this question : Warning for iOS/iPhone users about duplicate NSNotification observations and this answer : http://stackoverflow.com/a/14080884/889538 NSNotificationCenter makes no check ...
0
votes
2answers
48 views

Memory increasing every core data iteration

Having a memory issue while iterating through my core data objects. As it loops through CFData (store) keeps increasing until the application crashes. Shouldn't core data release the memory after ...
1
vote
1answer
67 views

MKPointAnnotation not working

Hello i got this method: -(void)adresseZeigen { NSLog(@"%s",__PRETTY_FUNCTION__); selectedAnnotation = [[MKPointAnnotation alloc]init]; selectedAnnotation.title = selectedCompanyName; ...
0
votes
1answer
23 views

Remove private (keychain) data when iOS app is removed

I know it's not possible to intercept any kind of event when an iOS app is uninstalled, but is there a way to bind keychain items to an app such that they will be removed along with the app?
0
votes
0answers
20 views

Detect UILongPressGestureRecognizer fail event

I have several UIView contained inside 2 UIScrollView (vertical, horizontal) and I would like to implement a long press gesture in the former. CocoaTouch UILongPressGestureRecognizer correctly ...
0
votes
1answer
34 views

UISwipeGestureRecognizer on view - If a touch is inside a UITableViewCell how to pass it to the cell?

I added a UISwipeGestureRecognizer to my view which changes the content of the view depending on the direction the user swipes(left or right). If a user swipes in a UITableViewCell though, the touch ...
0
votes
1answer
14 views

CIFilter determine inputKey parameter type at runtime

We get the input keys for a CIFilter by calling [filter inputKeys] which returns an array of keys. Is there a recommended way of determining, at runtime, the input parameter type for a specific key?
1
vote
1answer
26 views

Can I use NSLayoutConstraints to keep a UIView's subviews equally spaced regardless of later adding or removing from the subviews array?

I'd like to have a UIView where, every time I add or remove subviews from its subviews array, whichever subviews happent to be in the array are still equally spaced. For example, if I have subviews a ...

1 2 3 4 5 506