123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- //
- // ZSSFontsViewController.m
- // ZSSRichTextEditor
- //
- // Created by Will Swan on 03/09/2016.
- // Copyright © 2016 Zed Said Studio. All rights reserved.
- //
- #import "ZSSFontsViewController.h"
- @interface ZSSFontsViewController () <UITableViewDelegate,UITableViewDataSource> {
-
- ZSSFontFamily selectedFontFamily;
-
- }
- @end
- @implementation ZSSFontsViewController
- @synthesize delegate;
- #pragma mark - Init Section
- + (ZSSFontsViewController *)cancelableFontPickerViewControllerWithFontFamily:(ZSSFontFamily)fontFamily {
- return [[ZSSFontsViewController alloc] initWithFontFamily:fontFamily];
- }
- - (id)initWithFontFamily:(ZSSFontFamily)fontFamily {
- self = [super initWithNibName:nil bundle:nil];
- if (self) {
- _font = fontFamily;
- }
- return self;
-
- }
- #pragma mark - View Did Load Section
- - (void)viewDidLoad {
-
- [super viewDidLoad];
-
- //Set up navigation
- [self setUpNavigation];
-
- //Create table view
- [self createTableView];
-
- }
- #pragma mark - Set Up View Section
- - (void)setUpNavigation {
-
- self.navigationItem.title = @"Fonts";
-
- UIBarButtonItem *buttonItem;
-
- buttonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(cancel:)];
- self.navigationItem.leftBarButtonItem = buttonItem;
-
- buttonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemSave target:self action:@selector(save:)];
- self.navigationItem.rightBarButtonItem = buttonItem;
-
- }
- - (void)createTableView {
-
- UITableView *tableView = [[UITableView alloc] init];
- tableView.frame = CGRectMake(0.0f, 0.0f, self.view.frame.size.width, self.view.frame.size.height - self.navigationController.navigationBar.frame.size.height);
- tableView.delegate = self;
- tableView.dataSource = self;
- tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
-
- [self.view addSubview:tableView];
-
- }
- #pragma mark - Table View Section
- - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
- return 1;
- }
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
-
- return 7;
-
- }
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
-
- static NSString *CellIdentifier = @"fontCell";
- UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
-
- if (cell == nil) {
- cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
- }
-
- float fontSize = 20.0f;
-
- switch (indexPath.row) {
- case 0:
- cell.textLabel.text = @"Default";
- cell.textLabel.font = [UIFont fontWithName:@"ArialMT" size:fontSize];
- break;
- case 1:
- cell.textLabel.text = @"Trebuchet";
- cell.textLabel.font = [UIFont fontWithName:@"TrebuchetMS" size:fontSize];
- break;
-
- case 2:
- cell.textLabel.text = @"Verdana";
- cell.textLabel.font = [UIFont fontWithName:@"Verdana" size:fontSize];
- break;
-
- case 3:
- cell.textLabel.text = @"Georgia";
- cell.textLabel.font = [UIFont fontWithName:@"Georgia" size:fontSize];
- break;
-
- case 4:
- cell.textLabel.text = @"Palatino";
- cell.textLabel.font = [UIFont fontWithName:@"Palatino-Roman" size:fontSize];
- break;
-
- case 5:
- cell.textLabel.text = @"Times New Roman";
- cell.textLabel.font = [UIFont fontWithName:@"TimesNewRomanPSMT" size:fontSize];
- break;
-
- case 6:
- cell.textLabel.text = @"Courier New";
- cell.textLabel.font = [UIFont fontWithName:@"CourierNewPSMT" size:fontSize];
- break;
-
- default:
- break;
- }
-
-
- cell.selectionStyle = UITableViewCellSelectionStyleBlue;
-
- return cell;
-
- }
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
-
-
- switch (indexPath.row) {
- case 0:
- selectedFontFamily = ZSSFontFamilyDefault;
- break;
-
- case 1:
- selectedFontFamily = ZSSFontFamilyTrebuchet;
- break;
-
- case 2:
- selectedFontFamily = ZSSFontFamilyVerdana;
- break;
-
- case 3:
- selectedFontFamily = ZSSFontFamilyGeorgia;
- break;
-
- case 4:
- selectedFontFamily = ZSSFontFamilyPalatino;
- break;
-
- case 5:
- selectedFontFamily = ZSSFontFamilyTimesNew;
- break;
-
- case 6:
- selectedFontFamily = ZSSFontFamilyCourierNew;
- break;
-
- default:
- break;
- }
-
- }
- #pragma mark - Navigation Item Interactions Section
- - (void)save {
-
- if (self.delegate) {
- //HRRGBColor rgbColor = [colorPickerView RGBColor];
- [self.delegate setSelectedFontFamily:selectedFontFamily];
- }
-
- [self.navigationController popViewControllerAnimated:YES];
- }
- - (void)save:(id)sender {
- [self save];
- }
- - (void)cancel:(id)sender {
- [self.navigationController popViewControllerAnimated:YES];
- }
- #pragma mark - Memory Warning Section
- - (void)didReceiveMemoryWarning {
- [super didReceiveMemoryWarning];
- }
- @end
|