Sha256: 0e87824cce830f1f1c9be8e0ae3975a95d99adea0f9d9d40eedf31640daf745a

Contents?: true

Size: 858 Bytes

Versions: 8

Compression:

Stored size: 858 Bytes

Contents

//
//  XXPROJECT_TITLEXX
//
//  Copyright (c) XXYEARXX XXORGANIZATION_NAMEXX. All rights reserved.
//

#import "XXCLASS_PREFIXXXRootViewController.h"

@interface XXCLASS_PREFIXXXRootViewController ()

@property (nonatomic, strong) UILabel *label;

@end

@implementation XXCLASS_PREFIXXXRootViewController

- (void)loadView
{
    self.view = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    
    self.label = [[UILabel alloc] initWithFrame:CGRectInset(self.view.bounds, 30, 30)];
    self.label.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
    self.label.text = NSLocalizedString(@"CONGRATULATIONS", nil);
    self.label.textAlignment = NSTextAlignmentCenter;
    self.label.lineBreakMode = NSLineBreakByWordWrapping;
    self.label.numberOfLines = 0;
    [self.view addSubview:self.label];
}

@end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
klipp-0.2.2.5 spec/fixtures/template-repository/Example/XXPROJECT_IDXX/Source/XXCLASS_PREFIXXXRootViewController.m
klipp-0.2.2.4 spec/fixtures/template-repository/Example/XXPROJECT_IDXX/Source/XXCLASS_PREFIXXXRootViewController.m
klipp-0.2.2.3 spec/fixtures/template-repository/Example/XXPROJECT_IDXX/Source/XXCLASS_PREFIXXXRootViewController.m
klipp-0.2.2.2 spec/fixtures/template-repository/Example/XXPROJECT_IDXX/Source/XXCLASS_PREFIXXXRootViewController.m
klipp-0.2.2.1 spec/fixtures/template-repository/Example/XXPROJECT_IDXX/Source/XXCLASS_PREFIXXXRootViewController.m
klipp-0.2.2 spec/fixtures/template-repository/Example/XXPROJECT_IDXX/Source/XXCLASS_PREFIXXXRootViewController.m
klipp-0.2.1 spec/fixtures/template-repository/Example/XXPROJECT_IDXX/Source/XXCLASS_PREFIXXXRootViewController.m
klipp-0.2.0 spec/fixtures/template-repository/Example/XXPROJECT_IDXX/Source/XXCLASS_PREFIXXXRootViewController.m