UIModalTransitionStylePartialCurl with UITabBarController

I’ve scoured StackOverflow (and the Internet) for a solution to this problem. The question has been asked many times, but as you note, never sufficiently answered. Many solutions give an acceptable solution if it is unimportant whether, e.g., a lower toolbar curls up as well. Others have provided a solution using UIView animations / CoreAnimation … Read more

Sending POST data from iphone over SSL HTTPS

I finally got a way to send data over a secure connection from the iPhone: NSString *post =[[NSString alloc] initWithFormat:@”userName=%@&password=%@”,userName.text,password.text]; NSURL *url=[NSURL URLWithString:@”https://localhost:443/SSLLogin/Login.php”]; NSLog(post); NSData *postData = [post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES]; NSString *postLength = [NSString stringWithFormat:@”%d”, [postData length]]; NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease]; [request setURL:url]; [request setHTTPMethod:@”POST”]; [request setValue:postLength forHTTPHeaderField:@”Content-Length”]; [request setValue:@”application/x-www-form-urlencoded” forHTTPHeaderField:@”Content-Type”]; [request … Read more

Code Sign error: The identity ‘iPhone Developer: x Xxxxx’ doesn’t match any identity in any profile

Right Click the Project (eg. x.xcodeproject) and select Show Package Content Open project.pbxproj with TextEdit Search for all “CODE_SIGN_IDENTITY[sdk=iphoneos*]” and set it to “CODE_SIGN_IDENTITY[sdk=iphonesos*]” = “iPhone Developer”; Search for “PROVISIONING_PROFILE[sdk=iphoneos*]” and set it to “PROVISIONING_PROFILE[sdk=iphoneos*]” = “”; Save the file Reopen the Xcode project or select “Read from Disk” resulting from Xcode the prompt. This … Read more

How can an iPhone access another non-iPhone device over wireless or Bluetooth?

The only way to communicate with other Bluetooth devices via the External Accessory framework in iPhone OS 3.0 is if they are in the Made for iPod accessory program. Even though they communicate through standard Bluetooth connections, accessories need special hardware in order to process the data stream coming from the iPhone / iPod touch. … Read more

Accessing & Using the MobileWiFi.framework

For anybody who stumbles upon this question, here’s my library to access 802.11 networks. Although Apple claims to deny any applications that use private frameworks, there are several closed-sourced WiFi applications on the AppStore. Use at your own risk. This library works with iPhone SDK 3.1.2. SOLStumbler.h SOLStumbler.m Use: SOLStumbler *networksManager = [[SOLStumbler alloc] init]; … Read more