//YJYAppDelegate.h #import <UIKit/UIKit.h> @interface YJYAppDelegate : UIResponder <UIApplicationDelegate> //Objective-C语言关键词,@property与@synthesize(在对应的.m文件中使用)配对使用.功能:让编译好器自动编写一个与数据成员同名的方法声明来省去读写方法的声明. //声明为 Strong类型的对象会在执行时期自动保留且在生命周期结束前都是有效…
//  YJYDetailViewController.h #import <UIKit/UIKit.h> @interface YJYDetailViewController : UIViewController <UISplitViewControllerDelegate> @property (strong, nonatomic) id detailItem; @property (weak, nonatomic) IBOutlet UILabel *detailDescri…
//YJYMasterViewController.h #import <UIKit/UIKit.h> @classYJYDetailViewController; #import <CoreData/CoreData.h> @interface YJYMasterViewController : UITableViewController <NSFetchedResultsControllerDelegate> @property (strong, nonatomic…
//  YJYMasterViewController.m #import "YJYMasterViewController.h" #import "YJYDetailViewController.h" /* @interface:接口,提供类的公共描述,接口里面包含了使用该类的所需信息,编译此部分后,就能够使用该的对象及调用类方法. @implementation:实现,告诉编译器如何让该类工作,实现了接口中声明的方法. 代码分为接口和实现两部分, 接口部分包含:…
//  YJYDetailViewController.m #import "YJYDetailViewController.h" @interfaceYJYDetailViewController () @property (strong, nonatomic) UIPopoverController *masterPopoverController; - (void)configureView; @end @implementation YJYDetailViewControlle…
// main.m #import <UIKit/UIKit.h>//UIKitk框架提供一系列的Class(类)来建立和管理iPhone OS应用程序的用户界面( UI )接口.应用程序对象.事件控制.绘图模型.窗口.视图和用于控制触摸屏等的接口 #import "YJYAppDelegate.h" int main(int argc, char *argv[]) { @autoreleasepool {//Cocoa内存管理的黄金定律:如果我使用了new.alloc或c…
//YJYAppDelegate.m #import "YJYAppDelegate.h" #import "YJYMasterViewController.h" @implementation YJYAppDelegate //@synthesize managedObjectContext = _managedObjectContext;的含义就是属性managedObjectContext的存取方法是做用于_managedObjectContext这个变量的.…
[root@web03 ~]# /application/nginx/sbin/nginx -h nginx version: nginx/1.6.3Usage: nginx [-?hvVtq] [-s signal] [-c filename] [-p prefix] [-g directives] Options: -?,-h : this help -v : show version and exit -V : show version and configure options then…
来源:http://www.cnblogs.com/michaellfx/p/understanding_-VideoToolboxDemo.html iOS硬解H.264:-VideoToolboxDemo源码分析[草稿] iOS硬解H.264:-VideoToolboxDemo源码分析 -VideoToolboxDemo为VideoToolbox的简单应用示例. 1 - 初始化 (一)初始化FFmpeg SuperVideoFrameExtractor类提供了两个初始化方法, initWit…
#import "BIDAppDelegate.h" #import "BIDViewController.h" @implementation BIDAppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[UIWindow alloc] init…