//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.h #import <UIKit/UIKit.h> @interface YJYDetailViewController : UIViewController <UISplitViewControllerDelegate> @property (strong, nonatomic) id detailItem; @property (weak, nonatomic) IBOutlet UILabel *detailDescri…
//YJYAppDelegate.m #import "YJYAppDelegate.h" #import "YJYMasterViewController.h" @implementation YJYAppDelegate //@synthesize managedObjectContext = _managedObjectContext;的含义就是属性managedObjectContext的存取方法是做用于_managedObjectContext这个变量的.…
//YJYAppDelegate.h #import <UIKit/UIKit.h> @interface YJYAppDelegate : UIResponder <UIApplicationDelegate> //Objective-C语言关键词,@property与@synthesize(在对应的.m文件中使用)配对使用.功能:让编译好器自动编写一个与数据成员同名的方法声明来省去读写方法的声明. //声明为 Strong类型的对象会在执行时期自动保留且在生命周期结束前都是有效…
//  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…
本文档为iOS VideoToolbox硬编H.265(HEVC)H.264(AVC):1 概述续篇,主要描述: CMSampleBufferRef读取实际数据 序列参数集(Sequence Parameter Set, SPS) 图像序列参数(Picture Parameter Set, PPS) 等内容. 1.视频实际内容数据持久化 1.1.可攻可受的CMSampleBufferRef 文档1 概述中回调函数 static void compressionOutputCallback(  …
本文档尝试用Video Toolbox进行H.265(HEVC)硬件编码,视频源为iPhone后置摄像头.去年做完硬解H.264,没做编码,技能上感觉有些缺失.正好刚才发现CMFormatDescription.h中enum : CMVideoCodecType提供了kCMVideoCodecType_HEVC枚举值.所以呢,作死试试 iOS 9.2 硬编HEVC. 结论:不支持开发者使用H.265(HEVC),可以用H.264(AVC). 1.读取iPhone后置摄像头 提示:iPhone不支…
我在创建react-native项目时  npm了一个第三方库  结果一打开 xcode 竟然报错 React/RCTBundleURLProvider.h' file not found: 然后 我试了各种网上的方法试了一遍, 还是不行 就在我要放弃的时候 ,突然想到把网上的方法 结合一下 试试,结果好了. 以下就是我的解决方法 打开Mac里面的终端,进入项目所在的文件夹目录: 把项目里面的 node_modules 文件夹删除掉,然后执行 npm install 命令 npm install…