Tagged Questions
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.
0
votes
1answer
5 views
Xcode 4.6.3 Storyboard Class and Subclass Reference
I this this following stuff:
And I have create a new Objective-C category
And after all on Identify inspector I have defined the Custom Class as MyScrollView
And when app start on iOS ...
0
votes
0answers
6 views
Adding segue to a split view controller
my app has a a home screen (mainly a view with buttons on it). when a user presses one of the buttons, the view should segue to another view. it happens that one of the views that i want to segue to ...
0
votes
0answers
5 views
How to connect Xcode and iTunes Connect
I have completed my first app. iTunes Connect is waiting for its upload and has designed the app “Waiting for Upload”. I started the process of archiving. When complete, I clicked the Validate ...
0
votes
0answers
4 views
Unable to create archive with PonyDebugger
It is possible to create AdHoc archive with PonyDebugger?
On the device and simulator my project with PonyDebugger works fine, but when I create the archive got an error
...
0
votes
1answer
8 views
Linking Error - SFML sf::String
Having some trouble with linking issues when dealing with C++11 and SFML using XCode. I already have the libraries libc++ and C++11, but the code is having problems when using a string literal to name ...
-1
votes
0answers
23 views
XCode 5 GM Validate Crash?
Please help me for this crash, i'm not possible for me, distribute my app.
Long rapport posted in pastebin:
http://pastebin.com/ezndQpuX
Thanks for advance.
0
votes
2answers
21 views
2D Arrays in Java Program
My program is supposed to gets a phrase from the user then returns to the user an encrypted code of their choice (either ROT13 or ATBASH) of the phrase they entered. My code compiles and everything ...
0
votes
1answer
21 views
Have different orrientation of the App in Different device despite making a universal App in iOS7
I am trying to make a universal application for iPad and iPhone. I want that the app when used in the iPhone should stay in the Portrait mode and in the iPad to stay in the Landscape mode. What can I ...
0
votes
1answer
27 views
Is there a way to minimize everything between two pragma marks
I don't think this one requires much sample code. But for the sake of completeness let's say I have this code.
#pragma mark Getters / Setters
- (NSMutableDictionary *)myDict
{
if ...
0
votes
1answer
26 views
observing memory allocation in Xcode Ansi C
I want to observe the dynamically allocated memory in a C program while running, and to detect memory leaks. My program allocates memory according to user input. I'm looking for hours now for ...
1
vote
1answer
40 views
iOS 7 receiving airdrop files
I'm trying to get my app to register when files are airdropped.
According to apple
To receive files sent via AirDrop, do the following:
In Xcode, declare support for the document types your app ...
0
votes
0answers
12 views
How can I use XCode's libc++ with top-of-trunk clang?
When compiling this file
#include <vector>
int main(int argc, char* argv[])
{
std::vector<int> IntVector;
}
using the version of clang shipping with Xcode, I can tell clang to use ...
0
votes
3answers
31 views
Any way to not be required to use full path to file in Xcode? [C/C++]
In Xcode, whenever I want to use a file (in C or C++ specifically), I have to specify the full path to the file, whereas with gcc or g++, I do not have to if it is in the same directory as the code ...
0
votes
0answers
5 views
Juce screen splash c++ xcode
I'm trying to add an splash screen into my C++ app, build in Xcode. The code works, so when run the xcode project, the splash screen shows up nicely, but when I archived the app, is like it couldn't ...
0
votes
0answers
12 views
xcode change selection behavior
I'd like to change the selection behavior in xCode to be a bit more what I'm used to.
Currently, if I have a multi-line selection, say I start from the middle of a line, then shift-down two lines, ...