12345678910111213141516171819202122232425262728293031 |
- //
- // LocationShareModel.m
- // Location
- //
- // Created by Rick
- // Copyright (c) 2014 Location. All rights reserved.
- //
- #import "LocationShareModel.h"
- @implementation LocationShareModel
- //Class method to make sure the share model is synch across the app
- + (id)sharedModel
- {
- static id sharedMyModel = nil;
- static dispatch_once_t onceToken;
- dispatch_once(&onceToken, ^{
- sharedMyModel = [[self alloc] init];
- });
- return sharedMyModel;
- }
- - (id)init {
- if (self = [super init]) {
-
- }
- return self;
- }
- @end
|