
iOS基础
文章平均质量分 56
annkie
混迹于移动互联网和手机行业。
展开
-
[iOS]Xcode 10 jump to definition 无效
检查快键键删除Derived Datacd ~/Library/Developer/Xcode/DerivedDatarm -rf *或者Xcode > Preference > Locations > Derived Data删除.xcworkspace xcuserdata原创 2018-11-30 14:50:41 · 4483 阅读 · 1 评论 -
[iOS]GCD Dispatch系列
dispatch_sync同步执行,直到执行的任务完成才返回目标队列:串行队列在当前线程执行任务,顺序执行目标队列:并发队列新建线程执行任务,顺序执行目标队列:主线程队列在主线程执行任务,顺序执行在当前线程调用且目标队列为当前队列时,形成死锁相应的block不会被copy目标队列不会被系统retain在尽可能的情况下,block将被优化运行在当前线程。dispatch_...原创 2018-09-20 10:15:42 · 355 阅读 · 0 评论 -
[iOS]主线程同步派发一个block任务死锁问题
- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. dispatch_queue_t mainQueue = dispatch_get_main_queue();// dispa...原创 2018-09-20 10:14:13 · 1348 阅读 · 0 评论 -
[iOS]pod setup很慢的解决方法
pod setup的本质本质就是将https://github.com/CocoaPods/Specs.git的代码下载到~/.cocoapods/repos/master方法一 git clone直接clonegit clone https://github.com/CocoaPods/Specs.git ~/.cocoapods/repos/master这个速度可能也是很慢的,如...原创 2018-09-20 10:07:23 · 3042 阅读 · 0 评论 -
[iOS]复习笔记
runtime机制objective-c代码总是先预编译成C代码,runtime机制也是基于C的实现。消息机制是runtime的基础。研究runtime机制基本上就是阅读和理解对应的C代码。objc_msgSend(C代码)void objc_msgSend(id self,SEL op, ...)objc_msgSend(self,@selector(doSomethingW...原创 2018-09-20 10:05:46 · 343 阅读 · 0 评论 -
[Cocoapods]Podfile和Podspec技巧
PodfilePodfile是一个ruby文件,因此可以使用ruby的相关能力pod 命令是gem 模块$ gem list|grep cocoapodscocoapods (1.5.3)cocoapods-core (1.5.3)cocoapods-deintegrate (1.0.2)cocoapods-downloader (1.2.1)cocoapods-pac...原创 2018-09-20 10:00:16 · 1201 阅读 · 0 评论 -
[Objective-C]NSString使用copy和strong的区别?
NSString 是immutable的,是只读不可变的。NSMutableString是NSString的子类,因此,可以将NSString的指针指向NSMutableString的对象NSString在属性中使用copy或strong修饰当该属性不会被NSMutableString对象赋值时,并没有明显区别,因为他是不可变的。...原创 2018-09-20 09:56:15 · 318 阅读 · 0 评论 -
[Objective-C]奇怪的引用计数
一、第一种情况1.下面的代码输出结果是啥#import <Foundation/Foundation.h>int main(int argc, const char * argv[]) { @autoreleasepool { // insert code here... id obj = [[NSObject alloc]init];...原创 2018-09-20 09:54:49 · 306 阅读 · 0 评论 -
[Objective-C]正确的常量定义
1.NSString * const MY_CONSTANT; ✔️2.const NSString * myVariable; ❎技巧:按*分割两部分,左边是数据的类型,右边是变量或常量。1中,左边是数据类型为NSString,右边是constant,即常量,完整的说法是指向NSString(不可变类型)数据类型的常量(指针)MY_CONSTANT。2中,左边是数据类型为const...原创 2018-09-19 09:54:39 · 1324 阅读 · 0 评论 -
Xcode 10.1 (xip) 官方直接下载地址(离线下载)
### Xcode 10.1https://download.developer.apple.com/Developer_Tools/Xcode_10.1/Xcode_10.1.xip### Xcode 10https://download.developer.apple.com/Developer_Tools/Xcode_10/Xcode_10.xip### Xcode...原创 2015-09-21 13:56:50 · 202840 阅读 · 18 评论 -
Xcode升级导致插件失效的解决办法
升级XCode以后,插件无法加载重新build,提示下面的错误2016-04-02 10:13:17.152 Xcode[80853:843981] [MT] PluginLoading: Required plug-in compatibility UUIDACA8656B-FEA8-4B6D-8E4A-93F4C95C362C for plug-in at path '~/Libr原创 2016-04-02 10:20:04 · 5366 阅读 · 0 评论 -
[iOS]GCD和NSOperationQueue的比较
GCDNSOperationQueueGCD是C的函数封装NSOperation是Objective-C类,可以子类化。底层由GCD实现。支持取消整个Queue的任务,支持block任务取消dispatch_block_cancel支持取消单个NSOperation或整个Queue的任务支持暂停和恢复dispatch_suspend 和 dispatch_res...原创 2018-09-20 10:16:50 · 970 阅读 · 0 评论 -
[iOS]GCD Dispatch Queue优先级和系统Queue
Queue PriorityQOS说明DISPATCH_QUEUE_PRIORITY_HIGHQOS_CLASS_USER_INITIATEDDISPATCH_QUEUE_PRIORITY_DEFAULTQOS_CLASS_DEFAULTDISPATCH_QUEUE_PRIORITY_LOWQOS_CLASS_UTILITYDISPATCH_QU...原创 2018-09-20 10:17:51 · 2165 阅读 · 0 评论 -
[iOS]iOS 10 Notification Content Extension无效
1. 确保category APP和服务端发送的一样2. 确保Extension Target 和主APP Target的Deployment Target版本一致。参考:https://stackoverflow.com/questions/40055754/ios-10-notification-content-extension-not-loading...原创 2018-11-08 19:02:32 · 1426 阅读 · 0 评论 -
[iOS]Push Notification on iOS(2)
Build Provider Server for Push Notification on iOSNodeJS+APN1. Export .p12 from KeyChain for APS(+key).Translate 2 p12 to pemopenssl pkcs12 -clcerts -nokeys -out apns-dev-cert.pem -in Certificat...原创 2018-11-05 10:02:02 · 401 阅读 · 0 评论 -
[iOS]Push Notification on iOS(3)
Develop Push Notification on iOSConfigure Push Notification ServiceSupport Silent ModeXcode | Targets | Capabilities | Background Modes | Remote Notification turn onDevelopmentNotification disp...原创 2018-11-02 17:19:45 · 920 阅读 · 0 评论 -
[iOS]Push Notification on iOS(1)
Push Notification on iOSBrief FlowSend Notification request to APNsAPNs delivers the notification to target Devices(APPs)APNs will retry later if device power off.Pushing remote notifications ...原创 2018-11-02 16:42:24 · 579 阅读 · 0 评论 -
[iOS]如何断点调试Push Notification Content Extension?
1. 选择运行的Target为Push Notification Content Extension Target2. 点击运行3. 选择主Target APP4. Run原创 2018-11-09 17:39:12 · 5006 阅读 · 0 评论 -
[iOS]Redefinition of module
报错信息/ios/build/Build/Intermediates.noindex/Lottie.build/Debug-iphonesimulator/Lottie_iOS.build/module.modulemap:1:18: Redefinition of module 'Lottie'删除相关Cachecd ~/Library/Developer/Xcode/DerivedDa...原创 2018-10-17 12:55:31 · 3050 阅读 · 0 评论 -
[iOS]Xcode编译时builtin-copy失败
Xcode编译时builtin-copy失败原因是有文件存在extended attributes,应该是Xcode命令行的一个bug。解决方法:去除扩展属性@1. 为什么会有这个@ ?Headers andyliu$ ls -ltotal 32-rw-r--r--@ 1 andyliu staff 114 Oct 11 19:23 NodeMobile.h-rw-r--r-- ...原创 2018-10-12 11:15:53 · 912 阅读 · 0 评论 -
[iOS]彻底删除Xcode
touch removexcode.shchmod a+x removexcode.shvi removexcode.shiecho Removing your Xcode...sudo rm -rf /Applications/Xcode.appsudo rm -rf /Library/Preferences/com.apple.dt.Xcode.plistrm -rf ~/L...原创 2018-09-22 10:48:20 · 4676 阅读 · 0 评论 -
[Objective-C]strong、copy在NSArray和NSMutableArray的应用区别
两个问题1. 使用strong修饰NSArray会有什么问题?2. 使用copy修饰NSMutableArray会有什么问题?1. 使用strong修饰NSArray的问题 //// StrongCopyTest.h// StudyRuntime//// Created by Andy Liu on 2018/5/14.// Copyright © 2018年 Andy...原创 2018-09-22 10:47:06 · 764 阅读 · 0 评论 -
[iOS]安装时提示:App installation failed An unknown error has occurred.
尝试:1. Clean & Build2. 重启XCode3. 进入以下菜单找到相关项目Window -> Projects -> 选择项目 -> 删除Derived Data原创 2015-12-22 10:37:48 · 10636 阅读 · 0 评论 -
[iOS]XCode 常用插件
1. 自动注释VVDocumenter-Xcode-master https://github.com/onevcat/VVDocumenter-Xcode2.自动提示图片名字KSImageNamed-Xcode-master https://github.com/ksuther/KSImageNamed-Xcode3. TODO / FIXMEXT原创 2015-12-17 21:20:59 · 1536 阅读 · 0 评论 -
[iOS]XCode代码修改组织机构名
//// PartyNetProvider.h// VisitingHelper//// Created by LiuPingAn on 15/12/16.// Copyright © 2015年 XXXX. All rights reserved.// @description 组织机构相关的网络操作defaults write com.apple.Xc原创 2015-12-16 12:05:58 · 2756 阅读 · 0 评论 -
iOS: 枚举类型 enum,NS_ENUM,NS_OPTIONS
一般情况下,我们采用C风格的enum关键字可以定义枚举类型。typedef enum { UIViewAnimationTransitionNone, UIViewAnimationTransitionFlipFromLeft, UIViewAnimationTransitionFlipFromRight, UIViewAnimationTransitionC原创 2013-08-10 16:19:29 · 72235 阅读 · 4 评论 -
XCode中Objective-C功能支持情况索引
原文:http://developer.apple.com/library/ios/#releasenotes/ObjectiveC/ObjCAvailabilityIndex/index.html功能工具版本OS X 支持需求情况iOS 支持需求情况自动引用计数AR翻译 2013-08-02 22:20:09 · 1448 阅读 · 0 评论 -
IOS:Objective-C字面量
Objective-c早就支持字面量,但是IOS到XCODE 4.5,IOS6,LLVM4.0才开始较好的支持字面量。以下是简要对比:字面量不使用字面量的情况使用字面量的情况NSString字符串字面量NSString *greeting = [NSStr原创 2013-08-02 23:09:17 · 4048 阅读 · 0 评论 -
IOS:定义自己的Log函数
本文主要是为了表示怎么实现自己的Log方法,方便在Release版本删除log信息。代码主要来自:iOS Recipes: Tips and Tricks for Awesome iPhone and iPad Apps1. PRPDebug.m//// PRPDebug.m//// Created by andy on 7/3/13.////#import "原创 2013-07-03 18:10:26 · 2672 阅读 · 0 评论 -
IOS:定义常量
新建一个Constants.h文件://// Constants.h// HelloWorld////声明常量//export global constantsFOUNDATION_EXPORT NSString *const KEY_USER_NAME;FOUNDATION_EXPORT const int RETRY_COUNT;新建Constant原创 2013-06-30 22:55:09 · 6873 阅读 · 0 评论 -
IOS:查找SDK路径和Framework头文件
通过Terminal进入Xcode.app所在目录,可以找到相应的SDK路径,相关 的Framework的头文件也在改目录下。示例如下:Frameworks:$ pwd/Applications/xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSi原创 2013-06-30 22:01:16 · 11786 阅读 · 0 评论 -
IOS:Objective-C中奇特的方法声明语法理解
//下面的语法真的很奇特,按Apple的UITableView.h声明 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;咋一看,看不出方法名是那部分,居然是2部分组成。还查不到Objective C的官方参考有这种用途,有知道的请留言原创 2013-07-14 16:37:12 · 4407 阅读 · 0 评论 -
iOS:SSH远程访问iPAD
前提条件:iPad已经越狱,并且已经安装了OpenSSH。Windows与iPAD处在同一局域网中。1. ipad mini通过evas0n越狱后,进入Cydia有一个地方:OpenSSH Access How-To可以进入安装OpenSSH。2 .在Windows上安装Putty或者Secure Shell Client3. 从ipad设置中找到WIFI设置,选择连接原创 2013-02-27 20:19:31 · 3032 阅读 · 0 评论 -
Android与iOS的优缺点简单比较
<!--table.sample {border-width:1px; border-spacing:0px; border-style:solid; border-color:#78C0D4; border-collapse:collapse}table.sample th {border-width:1px; padding:3px; border-st原创 2013-01-22 15:38:59 · 13197 阅读 · 0 评论 -
iOS:iOS 6.x越狱(evasi0n)
官方链接:http://www.evasi0n.com/支持的设备:所有运行 iOS 6.0, 6.0.1, 6.0.2, 6.1的设备,包括iPhone,iPod touch,iPad and iPad mini等越狱工具系统要求:- MacOSX 10.5/10.6/10.7/10.8- Windows (XP 以上)- Linux x86/x86_原创 2013-02-05 13:27:35 · 1106 阅读 · 0 评论 -
iOS:ARC相关知识,assign/copy/retain/strong/weak/readyonly/readwrite/nonatomic/atomic
dfsfARC自动引用计数ARC不是垃圾回收,而是编译器自动插入代码来减少程序员的代码输入和失误。同时比垃圾和效率要高,因为其不影响运行时间,相当于自己管理内存。总是通过属性来管理实例变量(init/dealloc除外),在deal原创 2013-08-10 17:00:23 · 9168 阅读 · 0 评论 -
iOS:XCode项目.gitignore
#stackoverflow上的,留作备份。########################## .gitignore file for Xcode4 / OS X Source projects## Version 2.1# For latest version, see: http://stackoverflow.com/questions/49478/git-ignore-file-转载 2013-08-11 22:34:14 · 7367 阅读 · 0 评论 -
IOS:FAQ
1. 无法修改Button的Title[myButton setTitle: @"myTitle" forState: UIControlStateNormal];[myButton setTitle: @"myTitle" forState: UIControlStateApplication];[myButton setTitle: @"myTitle" forState: UICon原创 2014-06-08 10:43:08 · 985 阅读 · 0 评论 -
[iOS]The operation couldn’t be completed. (LaunchServicesError error 0.)
原因:修改了Bundle ID解决方法:重启iOS模拟器。原创 2015-12-15 15:50:12 · 3410 阅读 · 0 评论 -
iOS 9.0[官方,英文]
iOS 9.0This article summarizes the key developer-related features introduced in iOS 9, which runs on currently shipping iOS devices. The article also lists the documents that describe new featur转载 2015-09-24 14:34:24 · 2580 阅读 · 0 评论