#import <Foundation/Foundation.h> int main(int argc, const char * argv[]) { @autoreleasepool { NSArray *args = [[NSProcessInfo processInfo] arguments]; ) { printf("USAGE:\n\tuti <filenameExtension>\nEXAMPLE:\n\tuti jpg png\n"); exit(…
https://en.wikipedia.org/wiki/Uniform_Resource_Identifier   "URI" redirects here. For other uses, see URI (disambiguation). In information technology, a Uniform Resource Identifier (URI) is a string of characters used to identify a resource. Suc…
使用imageIO获取和修改图片的exif信息 一幅图片除了包含我们能看见的像素信息,背后还包含了拍摄时间,光圈大小,曝光等信息.UIImage类将这些细节信息都隐藏了起来,只提供我们关心的图片尺寸,图片方向等.我们可以通过imageIO框架获取到图片背后的所有信息,下面就让我们一起看看. 一.获取图片信息 imageIO框架是iOS中偏底层一点儿的框架,它内部提供的接口都是C风格的,关键数据也都是使用CoreFoundation进行存储.庆幸的是CoreFoundation中有很多数据类型都可…
前言 我们在iOS的平台上想要实现不同应用之间的内容分享一般有几种常用方式: 一种第的英文通过AirDrop实现不同设备的应用之间文档和数据的分享; 第二种是给每个应用程序定义一个URL方案,通过访问指定了URL Scheme的一个URL,实现直接访问一个APP; 第三种是通过UIDocumentInteractionController或者是UIActivityViewController这两个个iOS SDK中封装好的类在App之间发送数据,分享数据和操作数据; 第四种是通过App Exte…
今天在学习文档和数据共享中,首先讲的处理统一类型标识符UTI.第一次见,所以记下来以备之用,首先了解UTI和MIME的概念 1.同一类型标识符(Uniform Type Identifier,UTI)代表IOS信息共享的中心组件.可以把它看成下一代的MIME类型.UTI是标识资源类型(比如图像和文本)的字符串,他们制定哪些类型的信息将用于公共数据对象,他们不需要依赖于老式的指示符,比如文件扩展名,MIME类型,或者文件类型的元数据 如图,显示了Apple的基本顺应树的一部分.这个树上位于较低位置…
UTI全拼Uniform Type Identifier,直接翻译过来就是统一类型标示符. 这个东西可以实现的功能就是设备之间或者app之间的文件传输. 有兴趣的领个支付宝红包再走, ^_^ 全套相关传送门已经为大家找好,欢迎评论点赞. https://www.jianshu.com/p/cee3cc083807 http://www.cocoachina.com/industry/20131105/7295.html https://www.jianshu.com/p/d6fe1e7af9b6…
同一类型标识符(Uniform Type Identifier,UTI)代表IOS信息共享的中心组件.可以把它看成下一代的MIME类型.UTI是标识资源类型(比如图像和文本)的字符串,他们制定哪些类型的信息将用于公共数据对象,他们不需要依赖于老式的指示符,比如文件扩展名,MIME类型,或者文件类型的元数据 如图,显示了Apple的基本顺应树的一部分.这个树上位于较低位置的任何项目都必须顺应其所有父数据属性.声明一个父UTI意味着支持他的所有子 UTI.因此,可以打开public.data的应用必…
简介:本片文章是对官方文档的翻译,非常的感谢文章的翻译者:颐和园 官方地址:Document Interaction Programming Topics for iOS 文章的介绍内容: **************************************************************************************** 创建DocumentInteraction Controller 呈现 Document InteractionController…
http://www.appcoda.com/ios7-airdrop-programming-tutorial/ Adding AirDrop File Sharing Feature to Your iOS Apps october 30, 2013 by simon ng 12 comments AirDrop is Apple’s answer to file and data sharing. Before the debut of iOS 7, users need to rely…
原文:http://developer.apple.com/library/ios/#documentation/FileManagement/Conceptual/DocumentInteraction_TopicsForIOS/Introduction/Introduction.html   关于 DocumentInteraction iOS支持在你的app中用其他app预览和显示文档.iOS还支持文件关联,允许其他app通过你的程序打开文件.这些技术包括了UIKit中提供的UIDocum…
本文转载至 http://www.2cto.com/kf/201306/219382.html iOS支持在你的app中用其他app预览和显示文档.iOS还支持文件关联,允许其他app通过你的程序打开文件.这些技术包括了UIKit中提供的UIDocumentInteractionController类( UIDocumentInteractionController Class Reference),以及Quick Look框架(Quick Look Framework Reference).…
Configuring Your Xcode Project for Distribution  You can edit your project settings anytime, but some settings are necessary during development. Others are recommended when you distribute your app for beta testing and required when you submit your ap…
本文转载至 http://www.51094.com/?p=212   第一种: 发送一个正常的  pdf 文件,只要是能读取pdf 的都能得到响应 -(IBAction)openDocumentIn:(id)sender { NSString * filePath = [[NSBundle mainBundle] pathForResource:@"ASIHttpRequest" ofType:@"pdf"]; UIDocumentInteractionContr…
Configuring Your Xcode Project for Distribution You can edit your project settings anytime, but some settings are necessary during development. Others are recommended when you distribute your app for beta testing and required when you submit your app…
IOS 为UILabel添加长按复制功能 在iOS中下面三个控件,自身就有复制-粘贴的功能: 1.UITextView 2.UITextField 3.UIWebView UIKit framework提供了几个类和协议方便我们在自己的应用程序中实现剪贴板的功能. 1.UIPasteboard:我们可以向其中写入数据,也可以读取数据 2.UIMenuController:显示一个快捷菜单,用来展示复制.剪贴.粘贴等选择的项. 3.UIResponder中的 canPerformAction:wi…
在iOS中下面三个控件,自身就有复制-粘贴的功能: 1.UITextView 2.UITextField 3.UIWebView UIKit framework提供了几个类和协议方便我们在自己的应用程序中实现剪贴板的功能. 1.UIPasteboard:我们可以向其中写入数据,也可以读取数据 2.UIMenuController:显示一个快捷菜单,用来展示复制.剪贴.粘贴等选择的项. 3.UIResponder中的 canPerformAction:withSender:用于控制哪些命令显示在快…
File System Basics The file systems in OS X and iOS handle the persistent storage of data files, apps, and the files associated with the operating system itself. Therefore, the file system is one of the fundamental resources used by all processes. OS…
UIPasteboard使用 基本使用: - (void)copyClick { UIPasteboard *pab = [UIPasteboard generalPasteboard]; pab.string = yqmLabel.text; if (pab == nil) { [MBProgressHUD showError:@"复制失败"]; } else { [MBProgressHUD showSuccess:@"已复制"]; } } 可以赋值的属性: @…
一.引言 Quick Look技术是Apple在Mac OS X 10.5中引入的一种用于快速查看文件内容的技术.用户只需要选中文件单击空格键即可快速查看文件内容,可以在不打开文件的情况下快速浏览内容.公司是做全景视频开发的,具备自己的全景视频文件格式.因此,做一款针对自有视频格式的QuickLook插件显得非常有必要.QuickLook的技术资料非常丰富,不仅官方有着详尽的文档,互联网上也有不少开发者总结的开发经验.即便如此,在开发的过程中也碰到了不少的坑,如今总结在此.最终的QuickLoo…
https://developer.apple.com/library/mac/documentation/DeveloperTools/Reference/XcodeBuildSettingRef/1-Build_Setting_Reference/build_setting_ref.html#//apple_ref/doc/uid/TP40003931-CH3-DontLinkElementID_10 Product Information Build Settings These buil…
一.基础简介 二.JSON 语法 三.JSON 使用 一.基础简介 1.JSON:JavaScript 对象表示法(JavaScript Object Notation). JSON 是存储和交换文本信息的语法.类似 XML. JSON 比 XML 更小.更快,更易解析 2.JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式.它基于ECMAScript的一个子集. JSON采用完全独立于语言的文本格式,但是也使用了类似于C语言家族的习惯(包括C.C++.…
原文 System-Declared Uniform Type Identifiers One of the common tasks that an iOS developer has to do is to import or export documents from his iOS application. For example, suppose you are developing a document reader and you want to allow the user to…
Importing & Exporting Documents in iOS Posted by weimenglee - 09 Aug 2011 https://mobiforge.com/design-development/importing-exporting-documents-ios See also... Ad Blocker Technology Large-screen iPhones see Apple's Q1 2015 revenue skyrocket Using Ob…
什么是HTTP?超文本传输协议(HyperText Transfer Protocol -- HTTP)是一个设计来使客户端和服务器顺利进行通讯的协议.HTTP/1.1 协议规定的 HTTP 请求方法有 OPTIONS.GET.HEAD.POST.PUT.DELETE.TRACE.CONNECT 这几种. GET 请求响应 GET请求会显示请求指定的资源.一般来说GET方法应该只用于数据的读取. GET会方法请求指定的页面信息,并返回响应主体,GET被认为是不安全的方法,因为GET方法会被网络蜘…
本文转载至 http://blog.csdn.net/zaitianaoxiang/article/details/6657231   applicationdocumentationtypessystemstringlist Adopting Uniform Type Identifiers采用统一类型标识符Introduction to Uniform Type Identifiers Overview 统一类型标示符概述Declaring New Uniform Type Identifi…
本文转载至 http://blog.csdn.net/zaitianaoxiang/article/details/6658492 iphoneapplicationprocessingfileurltypes File type handling is new with iPhone OS 3.2, and is different than the already-existing custom URL schemes. You can register your application t…
    A uniform resource identifier (URI) is a uniform resource locator(定位器,探测器) (URL), uniform resource name (URN), or both. In computing, a uniform resource name (URN) is the historical name for a uniform resource identifier (URI) that uses the urn s…
HTTP The Definitive Guide 按址标识 identify by address 按名标识 identify by name Domain Name Server Uniform Resource Name Server https://en.wikipedia.org/wiki/Ln_(Unix) The ln command is a standard Unix command utility used to create a hard link (link) or a …
默认get方法没有contentType,post方法的contentType为:application/x-www-form-urlencoded; charset=UTF-8 (1) 设置成application/x-www-form-urlencoded, 后端可以直接用 String username = request.getParameter("username"); String password = request.getParameter("password…
关于Content-Type: multipart/form-data的支持  发布于 537天前  作者 yzhang226  303 次浏览  复制  上一个帖子  下一个帖子  标签: 无 今天使用postman测试, 发现multipart/form-data的参数不支持, postman的数据如下: POST /dada-log-api/v1/logging/line HTTP/1.1Host: 127.0.0.1:8380Verification-Hash: casaCache-Co…