Xcode is Apple's integrated development environment (IDE). This tag should only be used for questions about Xcode itself, not general Mac or iOS programming topics. Use [cocoa] for Mac programming questions, and [cocoa-touch] or [ios] for iOS programming questions.
0
votes
0answers
9 views
Xcode: Cannot start the application on Device (ExperitestServer: level was set to: (3))
As I build and run the application on Xcode for installing the app on an iPhone 3GS, Xcode suddenly stops the process (before even starting the application) and logs this:
ExperitestServer: level was ...
0
votes
3answers
25 views
Limit sliding UISlider past certain point
Let's assume a have a UISlider to which I set a certain value. The slider handle then moves to that value, as expected.
Now I want to let the user slide the handle of the slider back and forth, but ...
0
votes
0answers
5 views
How to make storyboard go to correct item in document outline when clicking on a view controller in graphical view
I have a lot of view controllers in my Storyboard which makes navigation a bit difficult. When I click on a view controller or other item in the document outline, it will scroll automatically to the ...
-1
votes
0answers
11 views
Implementing UIPickerView that have countries on it in Cocos2D
I need to implement a picker view con cocos2d which brings you a list of countries. Should I do this with a .plist with all the countries or is another way?
How can you integrate an UIKit thing, in ...
0
votes
0answers
24 views
Remove previously added viewController from UIPageViewController
I'm using an array to add viewControllers on the UIPageViewController. The problem is that they stay in memory and I want to delete them. I found this delegate method:
- ...
0
votes
0answers
15 views
Using one storyboard with multiples languages
I want to localize my app in multiple language (like 6 or 7) but i don't want to add as many as storyboard copy. So, for 6 differents languages, I want:
One storyboard
6 Localizable.strings
In my ...
0
votes
4answers
38 views
How to resize the UITextField in IOS
- How to increase the height of the text field in order to accommodate multiple lines, as the text field grows accordingly.
- I want something like multiple line attribute in android.
0
votes
0answers
9 views
Compiling OSX open source code with XCode 4.6.2
After downloading various open source code projects for OSX 10.8.3 from
[Mac OS X 10.8.3][1]
Several of the projects contain a readme file stating that the "Darwin" "Active Build Style" must be set ...
0
votes
1answer
18 views
CustomCell without customCell class
this is my problem. I would to create a custom cell without create a custom cell class.
I know that this is possible. I've created in storyboard a tableviewcontroller with a prototype cell with a ...
0
votes
0answers
7 views
How can I install an Installer Plugin with XCode and Interface Builder?
I've got this document:
http://s.sudre.free.fr/Software/documentation/Iceberg/English.lproj/documentation/Plugins%20Pane.html
But I don‘t know how to go into this interface " Packages & ...
0
votes
2answers
13 views
Removing unwanted characters from json response
I am trying to load data from a json response stored in an NSArray into a tableview.
json:
"fulltime": [
2,
2
],
Above is the json but when I display to screen it looks like ...
0
votes
0answers
21 views
addSubView:mapView not showing initial view controller
I have two view controllers. In the first view controller(appViewController), I have a button, on pressing which it should push to the next view controller, which has a map view. I have set the first ...
2
votes
0answers
23 views
Can I create a build rule for monitoring changes in a plist and calling a method at runtime?
I am building a theme engine for an iOS app and would love to be able to detect changes to a plist file that would then update the bundle and trigger a method in my code to re-apply the styles I have ...
0
votes
1answer
14 views
HTML links that exit UIWebView
I have my application iPhone Validated by Apple.
I have a UIWebView and I want to exit this UIWebView to go to Safari using HTML links but it's not working.
Please i Need Help
0
votes
3answers
35 views
UITextField doesn't take whole screen width
I'm using a UITextField and a UIButton as you can see in this screenshot:
Sometimes the "test" button needs to be disabled so I disable it with this code:
[_hButton setEnabled:NO];
...