mirror of
https://github.com/zhigang1992/transshift.git
synced 2026-06-11 08:49:31 +08:00
19 lines
429 B
Objective-C
19 lines
429 B
Objective-C
//
|
|
// MagnetURLViewController.h
|
|
// TransmissionRPCClient
|
|
//
|
|
// Created by Alexey Chechetkin on 03.09.15.
|
|
// Copyright (c) 2015 Alexey Chechetkin. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#define CONTROLLER_ID_MAGNETURL @"magnetURLViewController"
|
|
|
|
@interface MagnetURLViewController : UIViewController
|
|
|
|
@property (weak, nonatomic) IBOutlet UITextView *textMagnetLink;
|
|
@property (nonatomic) NSString *urlString;
|
|
|
|
@end
|