mirror of
https://github.com/zhigang1992/shadowsocks-iOS.git
synced 2026-01-12 22:52:17 +08:00
29 lines
531 B
Objective-C
29 lines
531 B
Objective-C
//
|
|
// SWBWebView.h
|
|
// AquaWeb
|
|
//
|
|
// Created by clowwindy on 11-6-16.
|
|
// Copyright 2011年 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
@interface SWBWebView : UIWebView {
|
|
|
|
}
|
|
|
|
- (NSString *)pageTitle;
|
|
- (NSString *)locationHref;
|
|
- (CGSize)windowSize;
|
|
- (CGPoint)scrollOffset;
|
|
- (NSString *)lastClickedLink;
|
|
- (NSString *)lastClickedLinkText;
|
|
- (NSString *)lastImageSrc;
|
|
- (void)openLastClickedLink;
|
|
- (NSString *)selection;
|
|
|
|
@property (nonatomic, readonly) UIScrollView *scrollView;
|
|
|
|
@end
|