mirror of
https://github.com/zhigang1992/shadowsocks-iOS.git
synced 2026-04-06 18:19:50 +08:00
19 lines
424 B
Objective-C
19 lines
424 B
Objective-C
//
|
|
// ProxySettingsTableViewController.h
|
|
// shadowsocks-iOS
|
|
//
|
|
// Created by clowwindy on 12-12-31.
|
|
// Copyright (c) 2012年 clowwindy. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface ProxySettingsTableViewController : UITableViewController {
|
|
UITextField *ipField;
|
|
UITextField *portField;
|
|
UITextField *passwordField;
|
|
}
|
|
|
|
@property (nonatomic, weak) UIPopoverController *myPopoverController;
|
|
@end
|