Sha256: c7bc84ff150f743f7b8f340c6e6f21f15d8df6bf853ae5dc37ebc00ce569a381

Contents?: true

Size: 586 Bytes

Versions: 6

Compression:

Stored size: 586 Bytes

Contents

//
//  ASHViewController.m
//  Demo
//
//  Created by Ash Furrow on 2014-07-23.
//  Copyright (c) 2014 Ash Furrow. All rights reserved.
//

#import "ASHViewController.h"

@interface ASHViewController ()

@property (nonatomic, strong) UILabel *label;

@end

@implementation ASHViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    
    self.label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];
    self.label.numberOfLines = 0;
    self.label.center = self.view.center;
    self.label.text = @"Some other text";
    [self.view addSubview:self.label];
}

@end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
second_curtain-0.6.0 Demo/Demo/ASHViewController.m
second_curtain-0.5.0 Demo/Demo/ASHViewController.m
second_curtain-0.4.0 Demo/Demo/ASHViewController.m
second_curtain-0.3.0 Demo/Demo/ASHViewController.m
second_curtain-0.2.4 Demo/Demo/ASHViewController.m
second_curtain-0.2.3 Demo/Demo/ASHViewController.m