Tagged Questions
0
votes
0answers
7 views
App launched from Xcode always starting behind all other apps?
A specific project I've been working on for a while now all of a sudden would display the application - when launched via 'Run' from Xcode 4 - behind all other running apps, in particular behind the ...
0
votes
1answer
19 views
How to access mac files(images) in iPad application running on iPad
Im pretty new to Xcode.
I made a simple app which shows an image in UIImageView.
I used following code:
- (IBAction)btnClicked:(id)sender {
[imgBox setImage:[UIImage imageNamed:@"DSC01522.jpg"]];
}
...
-4
votes
0answers
47 views
Objective-C: Is a bad practice using for and arrays instead of writing a lot of code to create objects [closed]
Do this change the speed and performance of a program? Is it a bad practice?
for (int i = 0; i < 2;i++) {
NSString *string;
[array addObject:string];
}
for(NSString* _s in array) { ...
0
votes
1answer
19 views
Repeat issue with UITableView cells
I am fully aware there are many cases of this issue here, although I am stumped and cannot resolve this on my own. I only want to display 4 cells total in my myTableView2 UITableView, but what I am ...
0
votes
0answers
18 views
Linker issue with libUnitTest++ in XCode 4
I am trying to incorporate libUnitTest++ into my project but I'm having issues. I added libUnitTest++.a to my project and I see that XCode has added this static library to the list of "Link binary ...
1
vote
1answer
32 views
iOS : Xcode Crash when configure SVN
At the time i Was checkout and clone project with local file path in my XCODE is crash.
When i enter file path "file:///iOS/svnProject" in location field xcode is crash please help for the same ...
0
votes
1answer
57 views
Teamviewer - Send Control Key to Mac from Windows
I'm TV'ing from a remote location to my mac to play around with XCode (on a windows pc). Within the interface builder, I'm trying to perform the control drag action. I tried pressing the ctrl button ...
4
votes
1answer
60 views
iOS custom font shows on simulator, but does not show on device
I am using a custom font in my iOS application
//Label which will display the current message
currentMessageLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 75, 300, 30)];
[currentMessageLabel ...
-1
votes
1answer
30 views
warning: Unsupported Configuration: Image and Title are set (These attributes are mutually exclusive; the Title will be ignored)
Unsupported Configuration Image and Title are set These attributes are mutually exclusive; the Title will be ignored..... while running my project in xcode i am getting this warning because of this ...
0
votes
0answers
61 views
How to increase spacing between lines in UITextView
How to increase spacing between lines in UITextView?
I wish to use default system font,i.e., Helvetica with size 15.
1
vote
1answer
78 views
how to write code in xcode that will be supported for all the sizes of iphone [closed]
The Problem is, kept size none in the viewcontroller.xib, and wrote code its running in iphone4 ,and normal iphone but the view is not supporting for iphone5 please tell me how to design for all ...
0
votes
2answers
60 views
String comparisons and textfield actions
I just started working with Xcode today to make Cocoa applications.
I'm watching videos on YouTube to try and get me going. I'd like to start building Mac applications now that I've switched to one. ...
0
votes
0answers
23 views
Can I stop Xcode from finding unreferenced platform frameworks?
I basically have an iOS Static Library project which references CoreData.framework and Foundation.framework. These are the only two built-in frameworks it should be referencing.
Much to my surprise, ...
0
votes
0answers
21 views
Setting a #define from the command line in xcode 4.6
I'm trying get set a #define macro when doing a command line build using xcodebuild and having no luck.
I've tried -DMYMACRO=1 and MYMACRO=1 everything else I can think of and nothing works.
How ...
1
vote
1answer
54 views
Xcode breakpoints not showing current objects
I've recently run into a really frustrating problem. When I set a breakpoint, and my program stops, the objects aren't shown in Xcode. I don't get the typical 'self' or any of my other objects. I ...