我正在一个新的 Cocoa Touch 库中工作,我需要以编程方式显示 UIWebView,因为我将在外部网络中请求用户和密码(如 oAuth),但我不知道如何在 Cocoa Touch 中执行此操作图书馆。
示例代码:
客户端.h
#import <Foundation/Foundation.h>
@interface Client : NSObject
@property NSString *_aProperty;
- (void)showUIWebView:(NSURL*)urlToOpen;
@end
客户端.m
#import "Client.h"
@implementation Client
@synthesize _identity;
- (void)showUIWebView:(NSURL*)urlToOpen
{
// I need to write code here to show the UIWebView :)
}
@end