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