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.
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
55 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
87 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
66 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
45 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
35 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 ...
0
votes
0answers
26 views
From Latitude and Longtitude to Store Name -CLLocation to MKReverseGecoder
I implemented Mapkit.framwork to enable to use GPS in my application to find coordinates (lat, longtitude).
In detail, my current place coordinate latitude and longtitude is 29.736801, -95.520734 ...
1
vote
1answer
39 views
How to make irregular shaped UIScrollView?
I want to make irregular shaped UIScrollView(using CGPath or UIBezierPath).
The contents will be scrollable and zoomable. And scroll actions will be accepted only in these areas, not rectangular ...
0
votes
3answers
45 views
Adding Array to PLIST
I am trying to add and array to a Root array in my plist:
And is not working. Here's my code:
-(IBAction)addName:(id)sender{
NSArray *arrayValues = [NSArray arrayWithObjects: nameLabel.text, ...
0
votes
1answer
54 views
Delete image thats stored in NSSUserDefaults
Im trying to give user option to delete an image picked from camera that is then saved in NSUserDefaults, then passed to another view. I cant seem to keep the image deleted. It deletes the image ...
0
votes
0answers
22 views
UIViewAnimation and UIViewController Containment - not forwarding animations
I have a project on github (https://github.com/beat843796/CHSlideController) where i have a problem forwarding animations, maybe because i have not completely understood uiviewcontroller containment ...
1
vote
0answers
44 views
Buttons in Swipe View not centered properly
I have a view called SideSwipeView that replaces a UITableViewCell when it slides to the left. When SideSwipeView appears six buttons are supposed to appear within SideSwipeView. The 6 buttons appear ...
1
vote
2answers
44 views
make animation wait for 1 sec – Objective-c
I'm working on a memory game with 6 UIButtons that changes background-image when they're touched. I check if two of the taped ones are the same with booleans. I have 6 different and each set to YES in ...
5
votes
4answers
134 views
What consumes less memory an actual image or a drawn image?
I am designing an app and I am creating some images with PaintCode.
Using that program I get the actual code for each image that I create, thus allowing me to choose to insert code or use an actual ...
0
votes
3answers
87 views
NSSortDescriptor - Sort descriptor based on another array
I hava a core data application. And I want to fetch one kind of object, User. User have the property userId.
I have another array with userIds, [1, 4, 3, 5]. And I would like to create a ...
0
votes
1answer
49 views
Putting isCancelled Property in an NSOperationQueue
So, I am using the addOperationWithBlock^{}method of the NSOperationQueue and I want to put the fine grained isCancelled property check at points in the operation code. How do I get the instance of ...
0
votes
1answer
64 views
iPhone Programming - Setting Group Ringtones
I have been doing a lot of research if we can assign ringtones to groups in iPhone. The obvious answer that I could find was that Apple doesn't provide a public API to do that.
My next idea was to ...
1
vote
2answers
70 views
What type should I use?
I have a result coming from a method that is either of kind TWTweetComposeViewControllerResult or SLComposeViewControllerResult.
I need to pass this to a method. Something like
[self ...
2
votes
2answers
84 views
+100
Reminders.app two-way synchronisation logic
I want my app to synchronise with the Reminders.app. (my app utilizes Core Data)
I've already done a prototype and it works, but there are some bugs I can't think through.
Right now my sync ...
0
votes
1answer
24 views
Resizing an image from UIImagePickerController not working
I am following this post on how to resize an image. I placed the + (UIImage*)imageWithImage:(UIImage*)image scaledToSize:(CGSize)newSize; in selectExerciseImageViewController.h and copied the relevant ...
0
votes
2answers
37 views
If custom UIView has >1 sublayers, app crashes on touchesBegan, why?
I have a few custom UIView objects that all handle drawing like this:
- (void)drawRect:(CGRect)rect {
// ^ I init the layers 1 and 2
[self.layer insertSublayer:layer1 atIndex:0]; // 1 or more
...
0
votes
1answer
28 views
instantiate class method issue while trying to resize and image
I am quite new to iOS development and its my first time trying to resize and image and dealing with class methods.
I am following this post on how to resize an image. I placed the + ...
0
votes
2answers
28 views
Change shouldReceiveTouch return value while touching
Well, let me explain my problem.
I have to change the return value of
-(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch { }
while I am moving my ...
0
votes
3answers
74 views
Webview not loading page in iOS app
I'm relatively new to programming in general, but I've attempted to find the answer to this and have failed to no end.
So basically I am attempting to create an application that has a map view scene, ...
0
votes
2answers
83 views
What does “id <someType> variableName” mean in Objective-C
I'm working through some Cocoa tutorials and ran across this syntax and have no idea what it means. From the context I'm assuming that you're setting a strong-type for the variable.
id ...
0
votes
0answers
17 views
Why did the height of the navigation bar change back to the default after backgrounding?
I set the height of the navigation bar to 55 in viewDidLoad, but after the app enters the background and becomes active again, the height goes back to the default 44.
What can I do?
0
votes
1answer
42 views
Accessing a .strings file that is inside a library, not bundle
I am inside a xcodeproj that is inside another xcodeproj or in other words a static library. This project contains multiple .strings files. This in particular is inside this library. How do I access ...
1
vote
1answer
43 views
Sending message with image
Is there any way to use MFMessageComposeViewController or any other controller that may be out there to send a message with an image?
MFMessageComposeViewController apparently does not support that ...
0
votes
1answer
36 views
applicationWillResignActive comes in very late
I've got a strange behaviour: When pressing the power button I'm getting the resign active notification in my app about 1-2 seconds after pressing it. Also when minimizing the app I get the ...
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, ...
1
vote
2answers
36 views
Which event is called after the view is shown
I have created a small app with a storyboard.
Now, I have created a first view, which should be my splash. I am now searching for the right place to put my work into it. After this work, I would ...
2
votes
3answers
31 views
Make Keyboard Disappear when UITableView Scrolls
I have a UITextField at the top of my Table View, after the text field is selected I want the keyboard to disappear. I know to call [[self view] endEditing:YES]; but I don't know how to check for the ...
1
vote
1answer
38 views
NSCalendar firstWeekday depending on location issue
Is it possible to get firstWeekday depending on location. For instance, in USA it should say Sunday. In Russia it should say Monday.
Edit: [[NSCalendar currentCalendar] firstWeekday] always says 1, ...
0
votes
0answers
41 views
UISegmented control change the background image
I am trying to change the background image of my UISegmentedControl bar. Tried doing this but I had no success in changing the background.
right now I tried the code
UIImage *img = [[UIImage ...
2
votes
1answer
97 views
A faster way to update interface using background threads
I'm building a spectrograph and would like to know how I can improve the performance of my UIView-based code. I know that I cannot update user interface for iPhone/iPad from a background thread, so ...
0
votes
3answers
40 views
Convert ISO8601 String to NSDate with correct timezone
The server sends the following time to my iOS app via JSON when I get Blog Posts from a server
"createdAt": "2013-05-11 05:54:07.589698"
However, when, it is outputted to the screen in ...
1
vote
1answer
60 views
Access subclass property from super class
I have a class that extends UIViewController called HorizontalModal, which, among other things, I want to automatically generate a back button on each view that extends it. If I put the code to draw ...
1
vote
1answer
41 views
Using methods from non-ARC libraries in an ARC project?
I am using the excellent, however, non-ARC project: https://github.com/boredzo/iso-8601-date-formatter
I am trying to use the following method from this library which is non-ARC in an ARC project:
- ...
0
votes
0answers
20 views
How to get a touchEnded event of the UITableView index bar of the right?
I have a UITableView, this table view has an index bar in the right. Everything works fine but I have a requirement to show a UIView in the middle of the table with the current letter selected from ...
-1
votes
2answers
63 views
Randomly choose between three images
I want to make a random choice of one of three images, and I believe I should use arc4random(), but I can't be certain. Here is the simple code I have:
SPImage *image = [SPImage ...
0
votes
2answers
31 views
Change .json file being placed into UITableView
The original file defined:
#define kBgQueue dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0)
#define kLatestKivaLoansURL [NSURL URLWithString: @"http://www.myurl.com/.json"];
The data ...
1
vote
1answer
44 views
Is it safe to use NSFileManager API to manipulate files in iCloud?
One can sync files to iCloud by just creating files in the ubiquity container like this:
NSFileManager *fileManager = [NSFileManager defaultManager];
NSURL *containerURL = [fileManager ...






