mirror of
https://github.com/samsonjs/samhuri.net-ios.git
synced 2026-03-25 09:25:47 +00:00
13 lines
268 B
Objective-C
13 lines
268 B
Objective-C
//
|
|
// Functions.m
|
|
// Blog
|
|
//
|
|
// Created by Sami Samhuri on 2015-04-26.
|
|
// Copyright (c) 2015 Guru Logic Inc. All rights reserved.
|
|
//
|
|
|
|
#import "Functions.h"
|
|
|
|
id safeCast(id obj, __unsafe_unretained Class class) {
|
|
return [obj isKindOfClass:class] ? obj : nil;
|
|
}
|