How to unsubscribe Apple Music

To unsubscribe from Apple Music do the following: Open Apple Music app on your iphone/ipad Hit the account icon in the top left corner Choose “View Apple ID” Choose “Manage” under subscriptions Click the switch to “Off” under auto renewal  

Xcode Use Image On UINavigationbar

You can set an image to the UINavigationbar in Xcode for iPhone like this: UINavigationBar *navBar = [[self navigationController] navigationBar]; UIImage *backgroundImage = [UIImage imageNamed:@”nav-bar-background-normal”]; [navBar setBackgroundImage:backgroundImage forBarMetrics:UIBarMetricsDefault]; Works from iOS 5 and up.

Set The Text Of A Back Button On A UINavigationBar

To set the text of a back button on a UINavigationBar you can set it like this for you iPhone app: UIBarButtonItem *backButton = [[UIBarButtonItem alloc] initWithTitle: @”Back Button Text” style: UIBarButtonItemStyleBordered target: nil action: nil]; [self.navigationItem setBackBarButtonItem: backButton]; [backButton release];   Further information

iTunes Reject Binary Upload

When you upload your binary to iTunes after distribution your app in Xcode, you might have found a mistake and want to delete and upload a new binary. This is possible in iTunes. iTunes Connect -> Manage Your Applications -> Select the App -> View Details Under Links select Binary Details and press “Reject This

Read More

Unable To Update to iOS 6.0

Unable to update iOS 6.0 software can occurred because of severals issues. Either Apples server are busy or bad network while you’re on OTA (Wireless Communication). Software Update Failed. An Error occurred downloading iOS 6. You can try to update via iTunes. If this also fails your error says something like this: The iPhone “iPhone”

Read More