-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
207 additions
and
14 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
freelansim-client/Classes/Controllers/Banner/FLBannerViewController.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// | ||
// FLBannerViewController.h | ||
// freelansim | ||
// | ||
// Created by Kirill Kunst on 13.02.15. | ||
// Copyright (c) 2015 Kirill Kunst. All rights reserved. | ||
// | ||
|
||
#import "FLBaseController.h" | ||
|
||
@interface FLBannerViewController : FLBaseController | ||
|
||
@end |
34 changes: 34 additions & 0 deletions
34
freelansim-client/Classes/Controllers/Banner/FLBannerViewController.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// | ||
// FLBannerViewController.m | ||
// freelansim | ||
// | ||
// Created by Kirill Kunst on 13.02.15. | ||
// Copyright (c) 2015 Kirill Kunst. All rights reserved. | ||
// | ||
|
||
#import "FLBannerViewController.h" | ||
|
||
@interface FLBannerViewController () | ||
|
||
@end | ||
|
||
@implementation FLBannerViewController | ||
|
||
- (void)viewDidLoad { | ||
[super viewDidLoad]; | ||
} | ||
|
||
- (void)didReceiveMemoryWarning { | ||
[super didReceiveMemoryWarning]; | ||
} | ||
|
||
- (IBAction)actionOpenBrainstorage:(id)sender | ||
{ | ||
} | ||
|
||
- (IBAction)actionClose:(id)sender | ||
{ | ||
[self dismissViewControllerAnimated:YES completion:nil]; | ||
} | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// | ||
// FLRoundedButton.h | ||
// freelansim | ||
// | ||
// Created by Kirill Kunst on 13.02.15. | ||
// Copyright (c) 2015 Kirill Kunst. All rights reserved. | ||
// | ||
|
||
#import <UIKit/UIKit.h> | ||
|
||
@interface FLRoundedButton : UIButton | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// | ||
// FLRoundedButton.m | ||
// freelansim | ||
// | ||
// Created by Kirill Kunst on 13.02.15. | ||
// Copyright (c) 2015 Kirill Kunst. All rights reserved. | ||
// | ||
|
||
#import "FLRoundedButton.h" | ||
|
||
@implementation FLRoundedButton | ||
|
||
- (id)initWithCoder:(NSCoder *)aDecoder | ||
{ | ||
self = [super initWithCoder:aDecoder]; | ||
[self setup]; | ||
return self; | ||
} | ||
|
||
- (void)setup | ||
{ | ||
self.layer.cornerRadius = 5.0f; | ||
self.clipsToBounds = YES; | ||
} | ||
|
||
@end |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.