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.
-1
votes
0answers
6 views
How to use CATransition animation to go to another view in Xcode
Can someone send me the code for going to another page using kCATransition animation?
- (IBAction)ViewController {
// ANIMATION AND LINK...
}
2
votes
1answer
10 views
ios: Can I update an ITunes App with a new Project but with same BundleID?
If I update my old App (No ARC) Currently in App Store with a new Project(With ARC) that has the same Bundle ID
-Will my users lose their Data (Stored in NS User Defaults) ?
-Is this allowed ?
-What ...
0
votes
0answers
3 views
AFNetworking POST not working
I am trying to make a POST request using AFNetworking. I went through SO and found that I need to include httpClient.parameterEncoding = AFJSONParameterEncoding
It still doesn't work even after ...
0
votes
1answer
10 views
Loading a table view (inside a view controller) with SQLite information
I have a view that is inserting information into the database. This view displays that information inside a table view (top half of view is being used for something else)
I have the view controller's ...
0
votes
1answer
11 views
View Controller with Multiple sub views
I have a website page which I need to replicate in my app (as a reference for anyone that wants to help the url is http://www.sccgformulary.co.uk/gis.html) There is a title, some sub-headings, plenty ...
0
votes
0answers
5 views
Homebrew - `brew install freetds` leads to: “configure error: C compiler cannot create executables”
I'm using Xcode version 4.6.2. I am trying to brew install freetds, but I'm running into some trouble.
I read this question, but still couldn't fix my error.
First, here's the error:
$ brew ...
0
votes
0answers
7 views
best practice: how to add an external framework to xcode project which is under version control?
xcode project under version control. multiple developers work on it. when adding 3rd party frameworks i prefere to keep them outside the git repo.
so whats the best practice when it comes to adding a ...
0
votes
2answers
16 views
Converting JSON Data from NSData to NSDictionary
I have a PHP service that returns me the following response in NSData format. After converting the same into NSString using:
NSString *html = [[NSString alloc] initWithData:data ...
0
votes
0answers
9 views
Can only round a buttons corners when using clips to bounds
For some reason the only way that I'm now able to round the corners on my BaseButton (which is a subclass of UIButton) is to use callButton.clipsToBounds = YES; Could someone help me understand what ...
1
vote
1answer
36 views
Masking an Image with an Image?
Dont work with code:
CGImageRef localResultImage;
CGImageRef localMaskImage;
size_t width = CGImageGetWidth(myImageMask);
size_t height = CGImageGetHeight(myImageMask);
...
0
votes
1answer
8 views
Running emulator not working (iOS and Phonegap)
I'm trying to run a project on Xcode (4.6.2) with Phonegap (2.7).
I create the project using the create command in the terminal window, and then when I open it in Xcode and click the run button on ...
0
votes
1answer
25 views
How to display .m file content in objective c programmatically?
I need to display the content of a .h/.m file on the iPhone's screen, maybe in a UITextView, how can I do that ?
The problem is that i need the code to be coloured exactly as shown in code.
Thank you ...
0
votes
0answers
10 views
xcode segment control , selected segment index
I am having a strange issue in xcode. I have a segment control with 5 segments, with each segment representing risk level. I want to color each segment with different color based on its risk level. So ...
0
votes
0answers
20 views
Program crushes intermitantly
I have created a new application based on a split view template with Core Data for ipad.
When I am trying to run this app it crushes every second start with the simulator. In between it works ...
0
votes
2answers
42 views
Install an iPhone app for testing without the App Store
I am a new iPhone developer and I have an app that I want to install on a tester's phone. This is to test before it gets submitted to the app store. I won't have access to the physical phone. I want ...