Skip to content

Commit

Permalink
Merge pull request #324 from jeroentrappers/master
Browse files Browse the repository at this point in the history
Catalog example of Vertical Text Alignment with NIAttributed label.
  • Loading branch information
jverkoey committed Jan 3, 2013
2 parents ffe97ff + 50c4cd3 commit 1d304be
Show file tree
Hide file tree
Showing 5 changed files with 585 additions and 0 deletions.
13 changes: 13 additions & 0 deletions examples/catalog/Catalog/AlignmentAttributedLabelViewController.h
@@ -0,0 +1,13 @@
//
// AlignmentAttributedLabelViewController.h
// NimbusCatalog
//
// Created by Jeroen Trappers on 18/12/12.
// Copyright (c) 2012 Nimbus. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface AlignmentAttributedLabelViewController : UIViewController

@end
74 changes: 74 additions & 0 deletions examples/catalog/Catalog/AlignmentAttributedLabelViewController.m
@@ -0,0 +1,74 @@
//
// AlignmentAttributedLabelViewController.m
// NimbusCatalog
//
// Created by Jeroen Trappers on 18/12/12.
// Copyright (c) 2012 Nimbus. All rights reserved.
//

#import "AlignmentAttributedLabelViewController.h"
#import "NIAttributedLabel.h"

@interface AlignmentAttributedLabelViewController ()

@property (weak, nonatomic) IBOutlet NIAttributedLabel *topLeft;
@property (weak, nonatomic) IBOutlet NIAttributedLabel *top;
@property (weak, nonatomic) IBOutlet NIAttributedLabel *topRight;
@property (weak, nonatomic) IBOutlet NIAttributedLabel *left;
@property (weak, nonatomic) IBOutlet NIAttributedLabel *center;
@property (weak, nonatomic) IBOutlet NIAttributedLabel *right;
@property (weak, nonatomic) IBOutlet NIAttributedLabel *bottom;
@property (weak, nonatomic) IBOutlet NIAttributedLabel *bottomRight;
@property (weak, nonatomic) IBOutlet NIAttributedLabel *bottomLeft;

@end

@implementation AlignmentAttributedLabelViewController

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}

- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.

self.topLeft.verticalTextAlignment = NIVerticalTextAlignmentTop;
self.top.verticalTextAlignment = NIVerticalTextAlignmentTop;
self.topRight.verticalTextAlignment = NIVerticalTextAlignmentTop;

self.left.verticalTextAlignment = NIVerticalTextAlignmentMiddle;
self.center.verticalTextAlignment = NIVerticalTextAlignmentMiddle;
self.right.verticalTextAlignment = NIVerticalTextAlignmentMiddle;

self.bottomLeft.verticalTextAlignment = NIVerticalTextAlignmentBottom;
self.bottom.verticalTextAlignment = NIVerticalTextAlignmentBottom;
self.bottomRight.verticalTextAlignment = NIVerticalTextAlignmentBottom;
}

- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}

- (void)viewDidUnload {
[self setTopLeft:nil];
[self setTopLeft:nil];
[self setTop:nil];
[self setTopRight:nil];
[self setLeft:nil];
[self setCenter:nil];
[self setRight:nil];
[self setBottom:nil];
[self setBottomRight:nil];
[self setBottomLeft:nil];
[super viewDidUnload];
}
@end

0 comments on commit 1d304be

Please sign in to comment.