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.
0
votes
2answers
21 views
Hiding a button Obj-C
I'm looking to hide a button on my i-phone app and then by clicking another button it will appear. I've managed to make the button disappear with a click but can't figure out the opposite. I'm also ...
-5
votes
5answers
51 views
Why is my NSMutableArray empty after using setValue:forKey: with another array?
I tried this code to add an NSArray to an NSMutableArray with key. My NSArray contains 24 values and the NSMutableArray is empty.
searchBookList=[[NSMutableArray alloc]init];
is the first line of ...
-5
votes
0answers
37 views
I'm using a uitableview in my application to display buttons. Is this the correct way? [closed]
@implementation Level1ViewController
@synthesize tableView,sections,filteredArray,quiz,level,dispScore,levelIndex1,filteredArray1;
- (id)initWithNibName:(NSString *)nibNameOrNil ...
0
votes
1answer
61 views
Two UITableViewCell have the same indexPath?
I have a problem like this:
I have a table view. when i click on a cell (or row), the cell will add 2 more buttons and re-size.
This function it work fine!
The problem is when i click first row,
...
0
votes
3answers
65 views
What control is Apple using here? (screenshot included) UIButton? UITableViewCell? Something else? [duplicate]
This is a really stupid but very simple question. I know it is. Please don't tell me that I should have googled first. I did, a lot. I just need someone to point me in the right direction and I can ...
0
votes
1answer
11 views
Determine UIWebView height based on dynamic local content, within a variable height TableViewCell
Okay, so I know this question has been asked and asked. There are many good suggestions, but I cannot get this to work as expected. I am trying to create a tableview cell that can dynamically set its ...
0
votes
0answers
37 views
NSDate with NSDateFormatter returns nil date
I want to convert a string to an NSDate, like this:
NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
[dateFormat setDateStyle:NSDateFormatterFullStyle];
NSDate *createdAt = [dateFormat ...
0
votes
1answer
27 views
add sound to swipe gesture recognizer
I'm trying to make a sound play whenever a user swipes forward or back.
I've already added sounds to all of my UIButtons with IBActions that play the sounds when the buttons are pressed, and it ...
1
vote
3answers
48 views
How can I force a UIButton to be released (even if the user is still holding it?)
So,
I have a button in my app that when held down, it will record frames from the camera. When the button is released, the output is processed. There is also a 10s max for videos - so after that time ...
1
vote
0answers
35 views
Get notified when UIImage *actually* updates
When loading large images to a UIImage's setImage method, it can sometimes take a few seconds for the UI to update. Is there anyway to get notified of when the image is actually displayed to the user?
...
2
votes
4answers
48 views
What is the best networking solution for a complex multithreaded app?
I have a streaming iOS app that captures video to Wowza servers.
It's a beast, and it's really finicky.
I'm grabbing configuration settings from a php script that shoots out JSON.
Now that I've ...
0
votes
1answer
28 views
presentViewController:animated:completion: does not animate View Controller into view
I am trying to debug a really weird issue in the following code:
if(condition1) {
ImageViewController* imageViewer = [[ImageViewController alloc] initWithImageData:tappedItem];
[self ...
0
votes
1answer
23 views
Core Data: Emitting KVO notifications for transient, derived properties
I have Parent entity with a custom class that has a transient and derived (read only) property called DerivedProperty.
The value of DerivedProperty is dependent on the value of ...
1
vote
2answers
47 views
SQLite Database table never created
I'm trying to create a SQLite Database but run into a problem that seems to derive from the table CONTACTS never being created (I get the error message 'Error while inserting 'no such table: CONTACTS'
...
1
vote
1answer
17 views
MKPointAnnotation add extra property
Is it possible to add an extra property to MKPointAnnotation? At the moment there is coordinate, title, and subtitle.
Is it possible to add a url property which can be accessed within ...
1
vote
0answers
30 views
AVPlayerItem: KVO for multiple tracks
I've been trying to register my AVQueuePlayer items for KVO at the time of initializing. Below, the items in itemArray have all been properly created with URLs. After the code the queueList is added ...
1
vote
1answer
60 views
Faster way to load Images in Collection View
I have a little flow problem with my UICollectionView. I want to display PDF's thumbnails just like in Apple's iBook app, when I scroll my collection view I can see it's not really smooth. Here is the ...
0
votes
1answer
37 views
MapView add an action to custom annotation (the right arrow)
I create the annotation pins via this for loop:
UIButton *eventMore = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
for (i = 0; i < [results count]; i++) {
//NSLog(@"Result: %i = ...
1
vote
2answers
43 views
Re Arranging table view rows causes crash on delete of row
Deleting of rows in my table view works fine. However If I re arrange a row I get a crash:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[Circuit ...
1
vote
0answers
11 views
How to find the whether the sprite is collide with the other sprite in cocos2d-android?
I have searched alot in order to make the sprite(_player) detected and collide with the other sprite(target) and being removed after the collision through out google and stackoverflow site, but could ...
0
votes
2answers
50 views
Crashing while assigning nil to UIViewController after removing view and popping
I have a sequence in which I need to pop a UIViewcontroller from outside the class. From the server I will get an log out event, and I need to pop the view controller if it is open. So I have done ...
0
votes
0answers
38 views
reloadAllComponents doesn't work in didSelectRowAtIndexPath
I have some troubles with with a UITableView and a UIPickerView. I've created a UITableView with some units. If I click at a cell, I want to display a UIPickerView with certain content in another ...
0
votes
1answer
36 views
I have an UIImage that is a line drawn black & white image in a UIImageView. How can I fill inside of the lines with color on touch?
I have this UIImage in a UIImageView:
I want it so that when a user touches inside of any box, it fills with a blue color.
This is just an example... the actual image I am going to use is not ...
0
votes
1answer
41 views
iPhone back button refuses to work after selecting an image with the UIImageViewController? [duplicate]
So I am writing this iPad app that starts on a main screen and then from there you can go to a settings page. In the settings page you have the ability to select a picture from the photo album using a ...
0
votes
1answer
24 views
UIButton Custom Type with background color and transparent foreground image not working
I have the following custom button:
_button = [UIButton buttonWithType:UIButtonTypeCustom];
_button.backgroundColor = [UIColor darkGrayColor];
UIImage *bg = [UIImage ...
0
votes
1answer
25 views
NSJSONSerialization creating values of class NSCFConstantString?
I'm creating an NSDictionary from a valid JSON using NSJSONSerialization like this:
id result = [NSJSONSerialization JSONObjectWithData:response
...
1
vote
1answer
14 views
Issue regarding UIScrollView as a subivew of a UIPanGesture-enabled view
Here is the scenario:
I have a scrollView as a subview of a view that has a UIPanGestureRecognizer added. The pan gesture only applies in one direction, let's say from left to right.
What I'm trying ...
4
votes
2answers
76 views
Loading Adobe Illustrator(.ai) file
Is it possible to load .ai files and open them programmatically?
This is what I have tried:
- (IBAction)openDocument:(id)sender
{
QLPreviewController *previewController = [[QLPreviewController ...
2
votes
3answers
32 views
Force portrait in one view controller makes other to be in portrait initially
The root view controller of navigation controller supports only portrait orientation and other controllers supports all orientation.Now if i am on the root view controller and the DEVICES is in ...
0
votes
1answer
32 views
Extended UIView is not animating
i have a class that extends UIView, in this class a have a function that animate some subviews
that are added to the view.
when a call the instantiated class method (after adding it as subview to some ...
0
votes
2answers
18 views
Add a large uiview as a subview without overflowing
I have a uiview that i need to add a subview to, the subview's width
is twice the width of the parent view, and i don't want this suview to overflow,
i need the overflown area to be hided, how can i ...
1
vote
0answers
27 views
Creating a good custom emoticon chat experience on iOS
I'm trying to come up with possible implementations for what is basically an expanding UITextView with the capability of typing inline images.
There are literally dozens of open source projects I've ...
0
votes
1answer
27 views
send serial data from each view in a multiple view app
I've got a multiple view (controller) app for motor control.
The main page selects the function (which motors) then goes to another page(viewcontroller) to move those associated motors
(plus range ...
-1
votes
2answers
35 views
Static UITableViewCell returns nil on CellForRowAtIndexPath, but only for certain sections
I have defined a table view controller using static cells in a Storyboard scene.
The table view itself contains six sections, each of which contains one or two cells.
I write data to the cells from ...
1
vote
2answers
36 views
Weird line in UIBarButtonItem
I am using the appearance proxy to set the UIBarButtonItem's background image:
UIImage *buttonBBI = [[UIImage imageNamed:@"bbi_texture.png"]
...
0
votes
1answer
24 views
How can i make a UITabbar like this?
I would like to create a UITabbar like below but i don't know what is the logic to do that.
0
votes
2answers
25 views
Subview not loading, but not crashing
So I've been struggling all day, trying to get a subview to show up on my app. I'm not getting any errors or crashes, but the subview just isn't showing up.
code that calls the subview from the main ...
0
votes
1answer
18 views
Core Plot on iOS 5
I have faced a bug using CorePlot on iOS5. I have installed Mercurial, launched Terminal and downloaded the latest version of the source using this command
hg clone ...
0
votes
3answers
52 views
Convert address to longitude and latitude
I want to do the following
- Allow users to input a physical address in ios app.
- This address is converted to longitude/latitude
- Django server code checks to see nearby locations.
How can I do ...
0
votes
2answers
66 views
Can't save string into SQLite database (SQLITE_DONE doesn't return true)
I'm trying to store strings in a SQLite database for an iOS 6 iPhone Application. It's fairly simple: a joke is displayed in a textview when clicking a button. When clicking a second button, I want to ...
3
votes
1answer
77 views
calculate messages count objective c
- (int)getMsgLen:(NSString *)msg{
int unicode = 0;//is arabic or english (1=arabic 0=english)
NSString *str = ...
0
votes
6answers
69 views
Get Values From json Object in Objective C? [closed]
am using objective c and here is my problem..
{
"STATUS":"OK",
"projects":
[
{
"company":
{
"name":"ABC Pvt Ltd.","id":"12345"
},
...
1
vote
0answers
23 views
How to check Whether sprite is touched, and delete it when collided with other sprite in cocos2d-android
To learn cocos2d-android game engine, i started developing game using this tutorial, http://dan.clarke.name/2011/05/how-to-make-a-simple-android-game-with-cocos2d-pt2-%E2%80%93-rotating-turrets/ and ...
0
votes
3answers
53 views
Set a label in a cell that is controlled by a stepper - objective c
Hi I have a UITableView and I am dymanically inserting cells into it that contain a UIStepper and a UILabel. The UILabel shows the value of the UIStepper.
- (UITableViewCell *)tableView:(UITableView ...
0
votes
4answers
45 views
change return key type of last dynamic generated textfeild
I am generating 4 dynamic UITextField all with return key type next and when i press next the focus gets transferred to next UITextField but what i want is when 4th UITextField gets focus its return ...
-2
votes
6answers
63 views
How to hide button after the button is manual added in Cocoa Touch?
I have added button manually in for loop, after that, how to hide or change the button and hide label?
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
button.frame = ...
-1
votes
2answers
57 views
Making an NSDateFormatter to parse ISO dates
I have a simple question but it is driving me nuts. I am using an API, and I get a JSon object back, and one of the fields is a date. The date is formatted like this: 2013-05-17T02:00:00.000Z. I ...
0
votes
2answers
29 views
CLLocation accepts longitude and latitude greater or less than their min and max values
As far as I know, the max and min values are:
latitude: [-90, 90]
longitude: [-180, 180]
CLLocation still accepts values beyond these limits, for example:
[[CLLocation alloc] ...
0
votes
0answers
14 views
Crash when calling CGImageDestinationFinalize with large photo
In the code below I am crashing on the CGImageDestinationFinalize() line. The CGImage is a large JPG photo. It works fine if I use a smaller JPG. But anything over 10MB crashes on the device with "out ...
0
votes
0answers
39 views
Parse NSString and replace certain substrings [duplicate]
Say I have a string that contains: "My computer is on fire! What should I do?" and I wanted to parse this string for all the substrings that had a length greater than 2. If the substring's length was ...



