CooperRS / RMActionController

This is an iOS control for presenting any UIView in an UIAlertController like manner
MIT License
539 stars 59 forks source link

Why No Such Module in iOS 12 deployment #48

Closed vanillasky771 closed 5 years ago

vanillasky771 commented 5 years ago

No such module 'RMActionController' in Swift

CooperRS commented 5 years ago

Hi there! 👋

Can you provide some more details about your isue? For instance, are you using RMActionController because it’s a dependency of RMDateSelectionViewController/RMPickerViewController?

In either case, I. Would guess that it’s a problem with git submodules not being checked out (git submodule update —init —recursive would be the command here).

Best regards, Roland

vanillasky771 commented 5 years ago

I’m just want to use customActionController in there can I ? The pod is already in the framework file

On 28 Dec 2018, at 13.13, Roland Moers notifications@github.com wrote:

Hi there! 👋

Can you provide some more details about your isue? For instance, are you using RMActionController because it’s a dependency of RMDateSelectionViewController/RMPickerViewController?

In either case, I. Would guess that it’s a problem with git submodules not being checked out (git submodule update —init —recursive would be the command here).

Best regards, Roland

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/CooperRS/RMActionController/issues/48#issuecomment-450297546, or mute the thread https://github.com/notifications/unsubscribe-auth/AY61nws2OnWG2_NFVipxHINrbqGpmmYHks5u9bacgaJpZM4ZjXUw.

CooperRS commented 5 years ago

I assume you want to use the CustomViewActionController from this project, right? In order to do so you copied the code from CustomViewActionController.swift to your project and added the RMActionController pod in your Podfile?

If yes, CocoaPods needs to import pods as frameworks instead of static libraries. This makes sure that there is a module for each imported pod (and also a module for the RMActionController pod). All you need to do is adding use_frameworks! to your Podfile. For instance:

platform :ios, '8.0'
use_frameworks!

pod "RMActionController", "~> 1.3.1"