I am working in a new Cocoa Touch Library and I need to show a UIWebView programatically because I'm going to request user and password (like oAuth) in a external web but I don't know how can I do this inside a Cocoa Touch Library.
Example code:
Client.h
#import <Foundation/Foundation.h>
@interface Client : NSObject
@property NSString *_aProperty;
- (void)showUIWebView:(NSURL*)urlToOpen;
@end
Client.m
#import "Client.h"
@implementation Client
@synthesize _identity;
- (void)showUIWebView:(NSURL*)urlToOpen
{
// I need to write code here to show the UIWebView :)
}
@end