1 |
//
|
|
2 |
// peekaview.m
|
|
3 |
// fixtures
|
|
4 |
//
|
|
5 |
// Created by Mark Larsen on 6/25/14.
|
|
6 |
// Copyright (c) 2014 marklarr. All rights reserved.
|
|
7 |
//
|
|
8 |
|
|
9 |
#import "peekaview.h"
|
|
10 |
|
|
11 |
@implementation peekaview
|
|
12 |
|
|
13 |
- (id)initWithFrame:(CGRect)frame
|
! |
14 |
{
|
|
15 |
self = [super initWithFrame:frame];
|
! |
16 |
if (self) {
|
! |
17 |
// Initialization code
|
|
18 |
}
|
! |
19 |
return self;
|
! |
20 |
}
|
! |
21 |
|
|
22 |
/*
|
|
23 |
// Only override drawRect: if you perform custom drawing.
|
|
24 |
// An empty implementation adversely affects performance during animation.
|
|
25 |
- (void)drawRect:(CGRect)rect
|
|
26 |
{
|
|
27 |
// Drawing code
|
|
28 |
}
|
|
29 |
*/
|
|
30 |
|
|
31 |
@end
|
|