You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 17, 2018. It is now read-only.
@@ -281,10 +281,8 @@ It creates a new paging menu controller. Do not forget to cleanup properties in
281
281
## Requirements
282
282
283
283
iOS8+
284
-
Swift 2.2+
285
-
Xcode 7.3+
286
-
287
-
*Please use 0.8.0 tag for Swift 1.2*
284
+
Swift 3.0+
285
+
Xcode 8.0+
288
286
289
287
## Installation
290
288
@@ -298,6 +296,14 @@ platform :ios, '8.0'
298
296
use_frameworks!
299
297
300
298
pod "PagingMenuController"
299
+
300
+
post_install do |installer|
301
+
installer.pods_project.targets.each do |target|
302
+
target.build_configurations.each do |config|
303
+
config.build_settings['SWIFT_VERSION'] ='3.0'
304
+
end
305
+
end
306
+
end
301
307
```
302
308
303
309
Then, run `pod install`
@@ -317,7 +323,7 @@ To install PagingMenuController into your Xcode project using Carthage, specify
317
323
github "kitasuke/PagingMenuController"
318
324
```
319
325
320
-
Then, run `carthage update`
326
+
Then, run `carthage update --toolchain com.apple.dt.toolchain.Swift_3_0`
321
327
322
328
You can see `Carthage/Build/iOS/PagingMenuController.framework` now, so drag and drop it to `Linked Frameworks and Libraries` in General menu tab with your project.
323
329
Add the following script to `New Run Script Phase` in Build Phases menu tab.
@@ -330,12 +336,7 @@ Also add the following script in `Input Files`
0 commit comments