作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个看起来像这样的 podfile:
platform :ios, '6.0'
xcodeproj 'NetApp.xcodeproj'
pod 'AFNetworking'
pod 'TTTAttributedLabel'
pod '[x]'
pod '[x]'
然后从我的 podfile 中运行
pod install
和
pod update
.但现在我收到以下警告:
SystemConfiguration framework not found in project, or not included in precompiled header. Network reachability functionality will not be available.
MobileCoreServices framework not found in project, or not included in precompiled header. Automatic MIME type detection when uploading files in multipart requests will not be available.
Xcode-projplace
中手动添加框架。 .但它似乎不起作用,并且缺少一些功能。
git revert
.但是当我运行
pod update
(更新
AFNetworking
)警告又回来了。
最佳答案
只需在 中导入头文件即可项目名称-前缀.pch
#ifdef __OBJC__
...
#import <SystemConfiguration/SystemConfiguration.h>
#import <MobileCoreServices/MobileCoreServices.h>
#endif
关于ios - 移除的 pod 也移除了相关的框架,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16371414/
我正在做一个项目,我的 android 在这个项目中作为一个网络服务器工作;输入带端口号的 IP 地址,打开 Web 界面,用户可以将文件上传到手机。我想在 Web 界面上显示一些图片,以便我们的界面
我是一名优秀的程序员,十分优秀!