Skip to content

Instantly share code, notes, and snippets.

View Adnan1990's full-sized avatar

Muhammad Adnan Adnan1990

View GitHub Profile
#import <MapKit/MapKit.h> // for Map Features in IOS App
#import <AVFoundation/AVFoundation.h> // for playing audio files in IOS
#import <MediaPlayer/MediaPlayer.h> // for playing video files in IOS
@Adnan1990
Adnan1990 / AttributedText.m
Last active August 29, 2015 13:57
Using Attributed String in IOS
#import "ViewController.h"
@interface ViewController ()
@property (nonatomic, strong) UILabel *label;
@end
@implementation ViewController
- (NSAttributedString *) attributedText{
@Adnan1990
Adnan1990 / ViewController.h
Last active June 6, 2016 06:49
Sharing on fb or twitter using social.framework
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
@end
@Adnan1990
Adnan1990 / AppDelegate .h
Created March 10, 2014 13:00
Local Notifications
#import <UIKit/UIKit.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end
@Adnan1990
Adnan1990 / ViewController.h
Last active August 29, 2015 13:57
IOS Email Composing Using MessageUI Framework
#import <UIKit/UIKit.h>
#import <MessageUI/MessageUI.h>
@interface ViewController : UIViewController
@end