Skip to content

Instantly share code, notes, and snippets.

@ahmetardal
Created February 3, 2011 15:04
Show Gist options
  • Save ahmetardal/809579 to your computer and use it in GitHub Desktop.
Save ahmetardal/809579 to your computer and use it in GitHub Desktop.
//
// UIScreen+Utils.m
// LiveGO
//
// Created by Ahmet Ardal on 2/3/11.
// Copyright 2011 MessengerFX. All rights reserved.
//
#import "UIScreen+Utils.h"
@implementation UIScreen(Utils)
- (BOOL) isRetina
{
return [self respondsToSelector:@selector(scale)] && ([self scale] == 2.0f);
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment