LAZIOMATICA – Guida allo Sviluppo Software

La nuova forma del software su misura…

 

XCode iPad Development – Debug Error launching remote program: failed to get the task for process 207

If you are having this error

Error launching remote program: failed to get the task for process 207

Take care to have a debug profile and if have the file Entitlements.plist, open it and set the boolean value get-task-allow to YES.

I solved in this way.

Filed under : Apple,MAC OSX,Sviluppo iPad/iPhone
By admin
On 29 novembre 2010
At 15:47
Comments : 0
 
 

iPad / Iphone – Hide Statusbar

To hide the application statusbar we can choose 2 way:

add this key  and set it boolean value to “true” inside the application info.plist

<key>UIStatusBarHidden</key>

<true />


or using the application singletone class programmatically,
in this way:


[[UIApplication sharedApplication] setStatusBarHidden:YES animated:NO];

this is all

Filed under : Apple,MAC OSX,Sviluppo iPad/iPhone
By admin
On
At 09:29
Comments : 0
 
 

How to reset Snow Leopard User password

Reset OSX Snow Leopard User account password

  1. Power on or restart your Mac.
  2. At the chime (or grey screen if your chime is turned off), hold down Command+S on your keyboard to enter single-user mode.
  3. This step is optional, but it’s a good idea because it checks the consistency of the hard disk before moving on. At the prompt, type fsck -fy and press Enter/Return. Wait for the checks to complete before going to the next step.
  4. Type mount -uw / and press Enter.
  5. Type launchctl load /System/Library/LaunchDaemons/com.apple.DirectoryServices.plist and press Enter.
  6. Type ls /Users and press Enter. This lists all of the usernames on the computer – helpful if you don’t know or remember what these are.
  7. Type dscl . -passwd /Users/username password and replace “username” with one of the users displayed in the previous step. Replace “password” with a new password of your choice. Press Enter.
  8. Type reboot and press Enter.

Works 100%

Original link

Filed under : Apple,MAC OSX
By admin
On 4 novembre 2010
At 22:42
Comments :Commenti disabilitati