Saturday, March 1, 2014
I am walking through Apples tutorial getting started with iOS development. I am at the storyboard area and can't seem to drag the cancel button to the green exit. I am not sure why the exit button doesn't except it. Is anyone else having this issue?
Monday, September 9, 2013
iOS Devs: does Apple let you use volume button for other function?
I would like to develop an app that uses the volume down button to not change the volume, but to record audio while it is held down. Like camera+ did originally to snap pictures using the camera and now the Apple camera app in iOS 6. Is this possible?
Thanks!
Sunday, September 8, 2013
iOS Devs: does Apple let you use volume button for other function?
I would like to develop an app that uses the volume down button to not change the volume, but to record audio while it is held down. Like camera+ did originally to snap pictures using the camera and now the Apple camera app in iOS 6. Is this possible?
Thanks!
Sunday, June 16, 2013
xcode ns pop up button
I am currently writing an applescript xcode project.
How do you set up the ns popupbutton?
For example:
on buttonClick_(sender)
set goodBad to (I want to set this variable by a ns popupbutton)
say goodBad
end buttonClick_
Thanks for your help!!!!
Tuesday, April 16, 2013
iphone5 home button not working
my home button is not working how do i activate it again??please help asap!!
Monday, April 15, 2013
iphone5 home button not working
my home button is not working how do i activate it again??please help asap!!
Wednesday, March 13, 2013
Hide Button when view loads
I am making a simple iOS game in which there is a main menu which has a play button which takes you to a window that says "Start" to start the game. In the second view there is also a pause button, resume button and main menu button. I only want the pause and start button to apper when the second view loads. This does not mean clicking start and then the buttons disappering.
How do I do this.
Thanks in advance!
Sunday, March 3, 2013
XCode Back Button leads to blank screen? HELP!??!
Thanks for looking. I'm creating a basic app with a friend, we've got no storyboard and no ARC. i have made next buttons to the next .xib fine, and made back buttons too. all work well except the button from the 2nd .xib back to the very first .xib.
i have no coding issues or warnings and when running a simulator all the buttons work. just need to get rid of the black blank screen. it should show a text view with title bar and toolbar with a next button on. but its just blank and black.!! so frustrating.
I am very new to coding etc and have been following tutorials on you tube.
i have a basic understanding but have seen so many different ways to solve very similar problems.
Thanks again for looking
Craig
XCode Back Button leads to blank screen? HELP!??!
Thanks for looking. I'm creating a basic app with a friend, we've got no storyboard and no ARC. i have made next buttons to the next .xib fine, and made back buttons too. all work well except the button from the 2nd .xib back to the very first .xib.
i have no coding issues or warnings and when running a simulator all the buttons work. just need to get rid of the black blank screen. it should show a text view with title bar and toolbar with a next button on. but its just blank and black.!! so frustrating.
I am very new to coding etc and have been following tutorials on you tube.
i have a basic understanding but have seen so many different ways to solve very similar problems.
Thanks again for looking
Craig
Tuesday, February 26, 2013
newbie xcode user- trying to clear text field with button
Hi. I am trying to make a very simple iPad app which has a text field that I want the user to be able to clear or erase by tapping a button. Is there a way to do this? Basically assign an action that clears all text and starts over? I hope that make sense. All help appreciated.
Tuesday, February 5, 2013
Button activated applescript?
In xcode 4.x I want to be able to click a button and have an applescript run, how do I do this?
Re: Button activated applescript?
Is this an AppleScriptObjC or Objective-C project? If the former, you can use regular AppleScript statements and/or call handlers in other script files, if the latter you can use the NSAppleScript class or add an AppleScriptObjC class.
If you are talking about connecting a button to your code, create an action handler/method (if it has the correct signature it will appear inn the Interface Editor), and connect it to the button, for example:
Button activated applescript?
In xcode 4.x I want to be able to click a button and have an applescript run, how do I do this?