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
0answers
10 views
What are the difference of these binary files in xcode?
I am just wondering what are the difference between these files below:
testing-Device-6_1.dylib vs. testing.dylib
testing-Device-6_1.lcext vs. testing.lcext
Or they are just the same?
0
votes
0answers
8 views
ld: library not found for -lGoogleAnalytics
I'm trying to use Google Analytics library with my xcode project.
Everything was working for a few months but then I moved the files on my computer to different locations and now I'm getting this ...
0
votes
0answers
8 views
How to adjust the Summary Format to expose a float** as a float[][]?
I'm using XCode to debug some code. Specifically, the code that I'm debugging exposes a float[][] as float**. I am unable to change this syntax, but I'm not certain it would help anyway.
After ...
0
votes
0answers
10 views
Set label title from mouseEntered in objective-c
I have this code in my NSButton subclass:
-(void)mouseEntered:(NSEvent *)theEvent{
NSLog(@"ENTER");
NSString *myString = @"foo";
[myTextField setStringValue:myString];
}
...
-1
votes
3answers
41 views
My client invited me to his iOS developer account and wants me to distribute the app [closed]
He assigned me the role "Technical" on his account. I am able to login into itunesconnect, but I do not know how to access his iOS distribution profile. I checked iOS developer's website and I see no ...
0
votes
0answers
7 views
touch events happen only once
I have the following code implemented in a UIViewController initialized with google maps, the idea is to try and catch the touch events in and use them to draw on the map
this is my code:
- ...
0
votes
1answer
16 views
Altering Ray Wenderlich's Parser not working with UITextView
I have tried to lift the parser in Ray Wenderlich's simple magazine tutorial into my project. His parser code is here:
...
-7
votes
0answers
37 views
XCode 5 Developer Preview, missing iPad Simulator? [closed]
I have just installed XCode 5 developer preview and I have a full compliment of iOS SDK's (5.1, 6.0, 6.1 and 7.0) for iPhones both non-retina and retina, 3.5" and 4".
But I cannot see anything ...
1
vote
3answers
31 views
porting iOS project for mac platform
I have been searching around for a method to port an iOS xcode built project to OSX xcode project. Unfortunately, I have found that because there is no UIKit or storyboard for OSX xcode (just ...
0
votes
0answers
11 views
Xcode Unit Tests - Link error when building for device only
My application unit tests build and test when running in the simulator, but fails with a linker error when building and testing to device.
On my application target I've set the following build ...
0
votes
0answers
3 views
opening a UIView in modal invokes touchesEnded in the calling UIViewController
I'm having a UIViewController that is calling a UINavigationViewController that has a UITableViewController and it has a push segue to a UIViewController (in the stack there are 3 views: ...
0
votes
0answers
14 views
Navigation Bars and Modal Segues
I am working on Xcode 4.6. I am trying to use an alternate view controller for the transition from portrait to landscape view, and I am using a modal segue to transfer to the new view. When I do, ...
0
votes
0answers
11 views
Master view full screen
Occasionally in my iPad Master/Detail app the Master View slides into view at a full-screen width rather than its usual 320p width. This happens under ios 5 and 6 on iPads 1 and 2. When it happens the ...
0
votes
1answer
25 views
Supported orientation madness
I know this is the most commonly asked question and trust me I have tried every kind of combination to make this happen and went through most posts here on stack overflow.
I have a ...
0
votes
1answer
18 views
UIview doesn't work property with viewdidappear
I have a tableview project which has a view, everything that I do in this view is controlled by "viewdidappear" method.
I added a new UIview which has "lines.h" and "lines.m" files.
I use this view ...