Xcode is Apple's integrated development environment (IDE). This tag should only be used for questions about Xcode itself, and not for general Mac or iOS programming topics. Use [cocoa] for Mac programming questions, and [cocoa-touch] or [ios] for iOS programming questions.
-2
votes
1answer
15 views
Why doesn't my pushViewController work
When I hit an element in my tableView it comes up with an error. I have checked all of the connections but still cant work it out. Here is my code
#import "CGViewController.h"
#import ...
0
votes
1answer
7 views
Two table view xib file ,call using one table view class methode
In a one view controller xib, I am using three table views.how can I call this table views using one table view class methods.
0
votes
0answers
13 views
obj c - Using AFnetworking to save mp4
I've been using AFnetworking to download a video from a remote server. It works great except for the fact it downloads the file as data rather than the original format (in this case mp4).
Is there a ...
-5
votes
0answers
15 views
When i intregrate iAds in iPhone App Apps selow down and disturb the ui?
When i integrate the iAds after iAds load then textfield's typing selow down and also popups and alerts showing on up to down and also picker view showing from right? I see this issue first time.it is ...
0
votes
1answer
21 views
How many devices can be used for test xcode?
I have several iPad devices for developing and testing apps and all of them belong to my customers. How many different devices can i use for developing and testing?
And I am not sure if it's a good ...
0
votes
0answers
18 views
Xcode Bad Access Error when calling method
I have a ViewController and in the viewDidLoad Method i initialize a GLKView.
After the GLKView is initialized i try to call a method of that View:
- (void)viewDidLoad
{
[super viewDidLoad];
...
1
vote
2answers
22 views
Unable to display 2 markers on google maps in objective C ios
I'm unable to display two markers on the google maps in objective C. I'm trying to pass two values to it. I realise it might just be getting overwritten but I haven't been able to fix it yet. Please ...
0
votes
3answers
40 views
Why doesn't my pushViewController not work
When I hit an element in my tableView it comes up with an error. I have checked all of the connections but still cant work it out. Here is my code
#import "CGViewController.h"
#import ...
0
votes
0answers
9 views
How can I disable ARC for derived sources in Xcode?
I'm porting a compiler project to use Automated Reference Counting. I set up the project in Xcode some time ago, and it continues to build and run fine in Xcode 4.6 without ARC. Now I've ported the ...
1
vote
0answers
64 views
Testing an iOS 6 project on XCode 5 DP with iOS 7 simulator
I hope this is not a duplicated questions, I can't really find a similar one.
I just installed XCode 5 DP willing to do some initial tests to one of our applications on iOS7.
I opened the project and ...
0
votes
0answers
9 views
Errors in using Space Manager
I am new to gaming physics in ios.Using space Manager as my physics engine.I have included the space manager files in my project.Added the code in init method.
smgr = [[SpaceManager alloc] init]; ...
1
vote
2answers
18 views
XCode: 'Warning: Multiple build commands for output file' but I get error if I delete the duplicate
I get the errors:
Warning: Multiple build commands for output file ...
0
votes
1answer
12 views
Comment like Facebook in xcode chat
I've just build a simple ios chat.
For example:
Just log in like "Mark", post something.
All posts of users show on the screen, if i want comment like in facebook one of this posts how can i do?
0
votes
0answers
18 views
ld: library not found for -lz clang: error: linker command failed with exit code 1 (use -v to see invocation)
Got this error for the first time, I have looked around and cannot find a solution to help me, I have cleaned my build and also checked to make sure I am compiling for the latest firmware
ld: library ...
0
votes
1answer
32 views
Why is it crashing after TableView endUpdates?
I am building an app that fetches data from an API via RestKit.
I setup the GET request and was able to load the API into a tableView. I also want to POST to the API and I've setup RKObjectManager and ...