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
// | |
// Created by Antol Peshkov on 25.11.14. | |
// Copyright (c) 2014 restaurantTradition. All rights reserved. | |
// | |
#import "APResizableContainerView.h" | |
#import "Masonry.h" | |
@implementation APResizableContainerView |
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
// | |
// APAspectFitImageView.h | |
// autolayout | |
// | |
// Created by Antol Peshkov on 16.10.14. | |
// Copyright (c) 2014 Antol Peshkov. All rights reserved. | |
// | |
#import <UIKit/UIKit.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
class Object : public Node | |
{ | |
private: | |
// It helps to typedef super & self so if you change the name | |
// of the class or super class, you don't have to replace all | |
// the references | |
typedef Node super; | |
typedef Object self; | |
} |