mirror of
https://github.com/zhigang1992/PINRemoteImage.git
synced 2026-03-28 22:45:33 +08:00
22 lines
399 B
Objective-C
22 lines
399 B
Objective-C
//
|
|
// PINRemoteImageMemoryContainer.m
|
|
// Pods
|
|
//
|
|
// Created by Garrett Moon on 3/17/16.
|
|
//
|
|
//
|
|
|
|
#import "PINRemoteImageMemoryContainer.h"
|
|
|
|
@implementation PINRemoteImageMemoryContainer
|
|
|
|
- (instancetype)init
|
|
{
|
|
if (self = [super init]) {
|
|
_lock = [[PINRemoteLock alloc] initWithName:@"PINRemoteImageMemoryContainer" lockType:PINRemoteLockTypeNonRecursive];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|