You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
703 B
26 lines
703 B
// |
|
// CameraStyleKitClass.h |
|
// iOS Cam |
|
// |
|
// Created by Gabriel Alvarado on 2/22/15. |
|
// Copyright (c) 2015 CompanyName. All rights reserved. |
|
// |
|
// Generated by PaintCode (www.paintcodeapp.com) |
|
// |
|
|
|
#import <Foundation/Foundation.h> |
|
#import <UIKit/UIKit.h> |
|
|
|
|
|
@interface CameraStyleKitClass : NSObject |
|
|
|
// Drawing Methods |
|
+ (void)drawCameraShutterWithFrame: (CGRect)frame; |
|
+ (void)drawCameraFlashWithFrame: (CGRect)frame; |
|
+ (void)drawCameraToggleWithFrame: (CGRect)frame; |
|
+ (void)drawCameraDismissWithFrame: (CGRect)frame; |
|
+ (void)drawCameraTopBarWithFrame: (CGRect)frame; |
|
+ (void)drawCameraFocusWithFrame: (CGRect)frame; |
|
+ (void)drawLaunchCameraWithFrame: (CGRect)frame pressed: (BOOL)pressed; |
|
|
|
@end
|
|
|