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.
29
votes
6answers
18k views
Figure out UIBarButtonItem frame in window?
UIBarButtonItem does not extend UIView, so there is nothing like a frame property.
But is there any way I can get what is it's CGRect frame, relative to the application UIWindow?
0
votes
1answer
3k views
iPhone App: Check In using facebook Graph API
In my iPhone App i want to implement Check in feature (Facebook Places)
How can I check in uisng facebook graph Api?
Please Help and Suggest.
0
votes
0answers
36 views
How to parse a Json result after POST request gives a json response. Objective C
I have a login page which I post the Username and Password values to a URL. The webservice returns a value in json.
How can I handle the json response to direct the user to a viewcontroller if the ...
1
vote
2answers
3k views
How to play .mov file in Android devices using default player?
I have been working on an iOS application, in my application I have recorded .mov file using AVCaptureSession, however when I tried to play in any Android devices it is not supporting in their default ...
0
votes
0answers
20 views
How to Lazy Load a static library?
I am working on a project that involves card swiping on different types of swipers from different vendors. These swipers have their own static libraries. I had no issues in integrating these libraries ...
38
votes
6answers
16k views
How to Check if an NSDate occurs between two other NSDates
I am trying to figure out whether or not the current date falls within a date range using NSDate.
For example, you can get the current date/time using NSDate:
NSDate rightNow = [NSDate date];
I ...
78
votes
8answers
26k views
What's the point of NSAssert, actually?
I have to ask this, because: The only thing I recognize is, that if the assertion fails, the app crashes. Is that the reason why to use NSAssert? Or what else is the benefit of it? And is it right to ...
0
votes
0answers
24 views
objc Separating tuples
ran into a simple objc problem and need some help. I'm sending a query to a server that gives me back a tuple wrapped in jSON. Just using the dictionary to sort everything out.
- (void)viewDidLoad
{
...
2
votes
3answers
46 views
Async image loading from url inside a UITableView cell - image changes to wrong image while scrolling
I've written two ways to async load pictures inside my UITableView cell. In both cases the image will load fine but when I'll scroll the table the images will change a few times until the scroll will ...
70
votes
7answers
60k views
Cropping a UIImage
I've got some code that resizes an image so I can get a scaled chunk of the center of the image - I use this to take a UIImage and return a small, square representation of an image, similar to what's ...
11
votes
5answers
6k views
0
votes
3answers
57 views
How to compare two times in iOS
I am trying to compare two times in iOS. I have list of times in my array i just want to check current time is matching to the any one the array value. can any help how to do that. i searched whole ...
1
vote
2answers
72 views
How to add a button on the Google maps in iOS?
I am new to iOS Programming and I have downloaded the google maps sdk for iOS and followed the instruction on their website ( as shown in this link
...
0
votes
0answers
7 views
viewcontroller with a uinvaigationcontroller when pop up does not show the navbar
I'm using storyboards with this. On the storyboard I have a "mainpage" uiviewcontroller that has a button which when tap will call another uiviewcontroller (choosewinner) to pop up. But this ...
2
votes
1answer
82 views
Adding a subview like UISlider or UIButtom in Google Maps in iPhone
I am new to iOS Programming and have very little knowledge about COCOA Touch. I am trying to add a button on the screen at the bottom over Google maps for giving an option to the user to go back to ...
0
votes
2answers
32 views
UISlider value is zero when trying to pass value to UIView with custom class
I have a UIView, UILabel, and UISlider placed in my UIVeiwController in my ViewController files. I have also programmatically added a UILabel to the UIView as a debugging tool.
Yes, I could connect ...
2
votes
2answers
46 views
Is there a way to tell what line of code generates log output without using breakpoints and stepping in Xcode (iOS)?
I have the following log outputs in Xcode:
2013-05-20 17:23:19.901 MyApp[2408:303] invalid pixel format
2013-05-20 17:23:19.901 MyApp[2408:303] invalid context
The problem is I don't know what line ...
-1
votes
2answers
51 views
Difference between @property and variable within interface declaration [duplicate]
What's the difference between putting a variable inside of the @interface{} declaration in a header file, and putting in a @property after that declaration?
E.g.,
@interface GameCenterManager : ...
2
votes
1answer
81 views
Units / Dimensions for UIScrollView decelerationRate and velocity?
I am trying to get the velocity of a scrolling UIScrollView after the user has lifted his/her finger so that I can trigger an event when the scrollview's velocity drops below a threshold velocity.
...
0
votes
2answers
45 views
Custom UITableViewCell setup everything in init* or use properties
I'm wondering what is the best approach/design when using custom UITableViewCells.
One way I'm doing it is having a init that takes all parameters necessary to setup the UITableViewCell. Like ...
0
votes
1answer
17 views
Do all UIVIewControllers come with a UINavigationController, UISearchDisplayController, etc? [closed]
I just noticed that UIViewController have properties like
self.navigationController
self.searchDisplayController
etc. Which confused me a bit. I did not define these in my xib file - but I notice I ...
4
votes
5answers
916 views
Removing multiple spaces in NSString
I have a NSString, this has multiple spaces, I want to trim those spaces and make a single space for e.g.@"how.....are.......you" into @"how are you".(dots are simply spaces)
I have tried with
...
16
votes
4answers
5k views
Disabled UIButton not faded or grey
In my iPhone app, I have a UIButton which I have created in Interface Builder. I can successfully enable and disable it like this in my code ...
sendButton.enabled = YES;
or
sendButton.enabled = ...
0
votes
1answer
24 views
Core Data Conundrum: Cannot call NSFetchedResults twice
I have a custom UITableViewController, called mainViewController.
It has a public property in the header file
@property (strong, nonatomic) NSMutableArray *someGroups;
This property is set in the ...
0
votes
1answer
12 views
iOS Application Support Directory files overwritten on update?
If I have a file called file.txt in Application Support Directory, then I release an update to AppStore for the app which has an update for file.txt. The users who update the app will they still have ...
1
vote
1answer
6k views
Presenting modal view controller from popover
I have a view controller that is inside a popover, and I want to present a modal view controller from it. Here's my code:
EditDateViewController *dateViewController = [[EditDateViewController alloc] ...
1
vote
2answers
49 views
What is the best approach to try different variations of an iOS app
Quite often design decision should be user tested or digested by the designers comparing different variations of the solution.
I am interested to know which method people think is the most practical ...
13
votes
5answers
14k views
facebook ios sdk- get list of friends
Using the facebook ios sdk, how can I get an NSArray of all my friends and send each an invitation to my app? Specifically, I am looking for the graph path to get all of the friends. Thanks.
1
vote
1answer
49 views
Update Tableview via Notifications
How do I get a table view to update via NSNotification via Push Notifications?
When my app receives a notification, via the App Delegate's - (void)application:(UIApplication*)application ...
0
votes
1answer
30 views
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 ...
0
votes
0answers
37 views
Coverting decimal to binary, octal, and hex [duplicate]
I want to convert a decimal number to binary, octal, and hex. I have Googled for the answer but all the methods I found are really big.
I developed the same app for Android and I used something like ...
0
votes
0answers
40 views
Best book for iPhone [closed]
I've got some situation here. I know Objective-C at very good level. But only if we are talking about console "apps". Now, i want to learn Cocoa Touch for iOS development. Which books you can ...
0
votes
3answers
666 views
iPhone - Update current view before pushing new ViewController on UITableViewCell selected
I have a UITableView with a list of items. On selection of an item I'm navigating to a new view that displays the details of the selected item using:
DetailsVC *detailsView = [[DetailsVC alloc] ...
0
votes
0answers
3 views
AVQueuePlayer playback freezes when removing items from queue
I successfully use AVQueuePlayer to queue and play AVPlayerItems. However, the problems begin when I alter the players queue with calls to removeItem: method. My assumption was that I can freely ...
4
votes
3answers
2k views
UITableViewCell, Delete Button Frame?
Is there a way to alter the frame of the "swipe" [DELETE] button used on UITableViewCells? Currently its centred vertically within the cell, but if possible I would like to move it down to the cyan ...
-1
votes
0answers
52 views
Core Data: “EXC_BAD_ACCESS” when using plain int data type
I have some doubts regarding storing plain "int" or "short" (int16_t) attributes inside the "Core Data" data management framework (on iOS 6 in my case).
I tried using it various ways and found it ...
2
votes
2answers
72 views
Understanding ViewController dealloc process
I have a container UIViewController which does the following when removing one of its children:
- (void)removeChildWithIndex:(NSUInteger)Index {
@autoreleasepool {
ChildViewController *child = ...
0
votes
1answer
26 views
How to reconnect when a NSStream loses connection?
I am building an app that monitors the position of the user, and sends it via a socket to our server.
On app startup the app connects to the socket on our server, and are we able to send data to the ...
0
votes
0answers
3 views
ABPeoplePickerNavigationController erratic behaviour
I am trying to use ABPeoplePickerNavigationController to allow the user of my app to select a phone number or email address for a message to be sent to. The current method I'm using - which I've seen ...
2
votes
1answer
30 views
UIView with rounded corners, but content is not rounded
I have a UIView, inside this UIVIew I have an other view that has almost the same size as his parent. The parent view needs to have rounded corners, and that works, but the content is not being ...
0
votes
3answers
50 views
Make modal push segue programmatically — Objective-c
I have a button, which when is pressed, adds a new subview with other buttons on it. I have done like this.
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button addTarget: ...
1
vote
0answers
18 views
Custom UIImagePickerViewController view hides StatusBar
I know that a lot of people have asked this, but I am having a hard time with showing the status bar when I call the UIImagePickerViewController. I implemented it in my app as a "custom" control, ...
1
vote
1answer
37 views
Why does my app crash when I try to access a contact’s name?
My app asks users to select one of their contacts and then one of the contact’s addresses. I want to generate a “display name” to use to refer to this address: for example, if the user selects one of ...
1
vote
4answers
2k views
hidesBottomBarWhenPushed but when popped
I've a problem with something that seems to be very simple.
My app has a view hierarchy consisting in a UITabBarController containing UINavigationControllers. When I navigate from the root to the ...
0
votes
0answers
20 views
Activity Indicator not working
My app needs to show an Activity Indicator while the app retrieves information from a login server.
I tried to set the activity indicator or the network indicator as well, from the time the user ...
8
votes
4answers
4k views
What are assertions or NSAssert good for in practice?
I wonder if it's a good habit to use NSAssert all over the place? What would be the benefit of doing that? In which situations is it a good idea to use it?
1
vote
5answers
4k views
addSubview not working
// Create and add a sub view
CGRect viewRect = CGRectMake(0, 0, 200, 200);
UIView *a_sub_view = [[UIView alloc] initWithFrame : viewRect];
[window addSubview : a_sub_view];
After adding the above 3 ...
2
votes
0answers
70 views
TTPhotoViewController ignores image orientation (mirror)
I have a problem I am using three20 in my project and I am Using TTThumbnailViewController and TTPhotoViewController and I am loading bunch of photos and bunch of them is just mirror copy of the ones ...
2
votes
1answer
15 views
How to get sprites react to touches in cocos2d android?
i have 1 gun when tap on any point on the screen bullets fires out, but according to my requirement there are 3 guns(sprites) when touched on any of the sprites bullets must fire up, when googled i ...
0
votes
1answer
24 views
Select current button that is showing in UIScrollView programmatically
I have a UIScrollView with paging enabled. In every page I have a button. I want that with every swipe the button that is showing in the UIScrollView will be selected.
I'm guessing that the solution ...










