mirror of
https://github.com/ksherlock/ample.git
synced 2024-10-31 15:04:56 +00:00
18 lines
240 B
Objective-C
18 lines
240 B
Objective-C
//
|
|
// FlippedView.m
|
|
// Ample
|
|
//
|
|
// Created by Kelvin Sherlock on 8/19/2020.
|
|
// Copyright © 2020 Kelvin Sherlock. All rights reserved.
|
|
//
|
|
|
|
#import "FlippedView.h"
|
|
|
|
@implementation FlippedView
|
|
|
|
-(BOOL)isFlipped {
|
|
return YES;
|
|
}
|
|
|
|
@end
|