Skip to content

Instantly share code, notes, and snippets.

@vseow
vseow / uitextview-style.m
Created August 7, 2015 20:44
UITextView Styling and Customization
#import <QuartzCore/QuartzCore.h>
@interface <UITextViewDelegate>
#pragma mark
- (void)viewDidLoad{
[super viewDidLoad];
@vseow
vseow / settings-ios8.m
Created August 7, 2015 20:41
Open iOS Settings from your App (iOS 8)
- (void)openSettings
{
BOOL canOpenSettings = (&UIApplicationOpenSettingsURLString != NULL);
if (canOpenSettings) {
NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString];
[[UIApplication sharedApplication] openURL:url];
}
}