mirror of
https://github.com/zhigang1992/transshift.git
synced 2026-06-11 08:49:31 +08:00
21 lines
419 B
Objective-C
21 lines
419 B
Objective-C
//
|
|
// FlagDescriptionView.m
|
|
// TransmissionRPCClient
|
|
//
|
|
// Created by Alexey Chechetkin on 08.08.15.
|
|
// Copyright (c) 2015 Alexey Chechetkin. All rights reserved.
|
|
//
|
|
|
|
#import "FlagDescriptionView.h"
|
|
|
|
@implementation FlagDescriptionView
|
|
|
|
+ (UIView *)flagDescriptionView
|
|
{
|
|
UIView *view = [[[NSBundle mainBundle] loadNibNamed:@"flagsDescription" owner:self options:nil] firstObject];
|
|
|
|
return view;
|
|
}
|
|
|
|
@end
|