Files
macdown/MacDown/Code/Preferences/MPPreferencesViewController.m
Tzu-ping Chung 597007befb Trigger UI updates on reload button pressed
The rendering methods are called, but the UI does not update. Maybe due
to caching? Need to investigate.
2014-08-16 15:05:05 +08:00

32 lines
688 B
Objective-C

//
// MPPreferencesViewController.m
// MacDown
//
// Created by Tzu-ping Chung on 7/06/2014.
// Copyright (c) 2014 Tzu-ping Chung . All rights reserved.
//
#import "MPPreferencesViewController.h"
#import "MPPreferences.h"
NSString * const MPDidRequestPreviewRenderNotification =
@"MPDidRequestPreviewRenderNotificationName";
NSString * const MPDidRequestEditorSetupNotification =
@"MPDidRequestEditorSetupNotificationName";
@implementation MPPreferencesViewController
- (id)init
{
return [self initWithNibName:NSStringFromClass(self.class)
bundle:nil];
}
- (MPPreferences *)preferences
{
return [MPPreferences sharedInstance];
}
@end