2021年2月
-
Apache You don't have permission to access / on this server
<VirtualHost *:80> ServerName com.xxx.com ServerAlias com.xxx.com DocumentRoot "\www\aaa" <Directory "\www\aaa"> Options ...
-
Duplicate class android.support.design.widget.CoordinatorLayout
Duplicate class android.support.design.widget.CoordinatorLayout found in modules classes.jar (com.android.support:coordinatorlayout:28.0.0) and classes.jar (com.android.support:design:25.3.1)。新建项目时引入了一个状态栏显示框架,结果项目运行时就报了如上的错误,一开始也是一直在找重复依赖的解决办法,试了几个都不管用,后面才排查到...
-
Undefined symbols for architecture x86_64: "_OBJC_CLASS_$_TCVideoRecordViewController", referenced
Undefined symbols for architecture x86_64: "_OBJC_CLASS_$_TCVideoRecordViewController", referenced from: objc-class-ref in MusicClassVC.o objc-class-ref in ZYTabBarController.o objc-cl...
-
ios日常笔记: add Frameworks Library如何关联三方库
操作步骤:选择项目->General->Frameworks...
-
IOS报错:Undefined symbols for architecture x86_64 解决方案
首先声明因为我是在真机上编译的项目,所以报错的架构(CPU指令集)为arm64。如果我们使用64位模拟器(iPhone simulators 5s 或更高版本)编译或者运行项目,就会报以下错误:Undefined symbols for architecture x86_64:如果我们使用32位模拟器(iPhone simulators 5 或更低版本)编译或者运行项目,就会报以下错误:Undefined symbols for architecture i386:Undefined symbols for arc...