第一步: 用cocoapods
target "项目名称" do
platform :ios, '7.0'
pod 'InMobiSDK', '~> 6.2.0'
platform :ios, '7.0'
pod 'InMobiSDK', '~> 6.2.0'
end
导入框架
可能出现的问题:
Use the
$(inherited)
flag, or
Remove the build settings from the target.
-
[!] The `AllBlue [AutoDebug]` target overrides the `OTHER_LDFLAGS` build setting defined in `Pods/Target Support Files/Pods/Pods.autodebug.xcconfig'. This can lead to problems with the CocoaPods installation
Use the$(inherited)
flag, or
-
Remove the build settings from the target.
[!] The `AllBlue [Release]` target overrides the `OTHER_LDFLAGS` build setting defined in `Pods/Target Support Files/Pods/Pods.release.xcconfig'. This can lead to problems with the CocoaPods installation
Use the$(inherited)
flag, or
-
Remove the build settings from the target.
[!] The `AllBlue [AutoRelease]` target overrides the `OTHER_LDFLAGS` build setting defined in `Pods/Target Support Files/Pods/Pods.autorelease.xcconfig'. This can lead to problems with the CocoaPods installation
Use the$(inherited)
flag, or
Remove the build settings from the target.
大概就是config设置上有冲突,解决办法:
在Build Settings -> Other linker flags 中添加$(inherited)在Build Settings -> head search Path 中添加$(inherited) (就是按照提示添加标识就行了)
第二步: 在
当前ViewController 开始弹出广告
1️⃣导入头文件 设置代理 并声明一个属性 来显示广告
#import
<InMobiSDK/InMobiSDK.h>
@interface
RootViewController
()&l