iOS
学习笔记999
装逼得逼,求仁成仁,念念不忘,必有回响
展开
-
关于配置Associated Domains Capability遇到的问题
一、前提条件:1、已在开发者平台配置好Associated Domains Capability;2、已在Xcode添加Associated Domains Capability;3、开发者账号没问题;4、Automatically manage signing;二、项目编译运行后,报如下错误:Your account does not have sufficient permissions to modify containers.Provisioning profile “iOS Te原创 2020-10-27 15:26:06 · 3382 阅读 · 0 评论 -
Library not found for -lstdc++.6.0.9
下载这个脚本,这个脚本能一键配置:https://github.com/devdawei/libstdc-具体使用方法:Xcode 10和Xcode 11中删除的libstdc++库先下载下来这个项目,然后把该文件拖到桌面,然后打开终端cd到刚下载的这个文件夹:libstdc--master文件夹;如果你使用的是 Xcode 10,则打开刚下载的这个文件夹,在里面找到:install-Xcode_10.sh,这个文件,在将install-Xcode_10.sh拖到终端中执行即可。Xcode 11 b原创 2020-07-06 14:28:54 · 240 阅读 · 0 评论 -
React Native — Unknown argument type ‘attribute’ in method -[RCTAppState getCurrentAppState:error:].
React/Base/RCTModuleMethod.mm91行static BOOL RCTParseUnused(const char **input) { return RCTReadString(input, "__attribute__((unused))") || RCTReadString(input, "__attribute__((__unused__))") || // 添加此行 ...原创 2020-07-02 15:51:47 · 428 阅读 · 0 评论 -
Xcode 11报错 library not found for -libstdc++.6.0.9
1.真机将libstdc++.6.0.9.tbd文件拷贝到以下路径:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/lib2.模拟器将libstdc++.6.0.9.tbd文件拷贝到以下路径:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimula..原创 2020-07-02 15:32:35 · 583 阅读 · 0 评论 -
react-native-image-crop-picke
No known class method for selector 'labelColor'QBImagePicker/QBAssetsViewController.m:198:31: error: no known class method for selector 'labelColor''RCTImageURLLoader.h' file not found解决方案: #ifdef __IPHONE_13_0 if (@available(iOS 13.0, *)) .原创 2020-06-28 17:22:37 · 476 阅读 · 0 评论 -
react-native升级问题总结
问题1: react-native-collapsible---->undefined is not an object evaluating reactNative.View.propTypes解决方案 升级 react-native-collapsible问题2:antd-mobile-rn undefined is not an object (evaluating' react.PropTypes.bool')解决方案 npm install @ant-design/reac...原创 2020-06-28 17:18:04 · 1636 阅读 · 0 评论 -
TypeError: Cannot read property contain of undefined
Unhandled JS Exception: TypeError: TypeError: Cannot read property 'contain' of undefinedRN版本升级 : resizeMode={Image.resizeMode.center} 改成 resizeMode={'center'}原创 2020-06-28 17:03:01 · 967 阅读 · 0 评论 -
We ran xcodebuild command but it exited with error code 65
error Failed to build iOS project. We ran "xcodebuild" command but it exited with error code 65. To debug build logs further, consider building your app with Xcode.app, by opening .xcworkspace解决方案:重新build clean原创 2020-06-28 17:00:23 · 2023 阅读 · 0 评论