wackoisgod
2/22/2018 - 3:25 AM

wtf.mm

//
//  ViewController.m
//  TestMelApp
//
//  Created by Andrew Spiering on 2/21/18.
//  Copyright © 2018 Andrew Spiering. All rights reserved.
//

#import "ViewController.h"

@interface ViewController ()
@property (strong, nonatomic) UITextView *textView;
@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    self.textView = [[UITextView alloc] initWithFrame:self.view.frame];
    _textView.text = [NSString stringWithFormat:@"This is dedicated to people"];
    _textView.font = [UIFont fontWithName:@"Futura" size:18.0f];
    _textView.scrollEnabled = TRUE;
    [self.view addSubview:_textView];
}


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


@end