Home > Blockchain >  How to install LinqToObjectiveC cocoapod?
How to install LinqToObjectiveC cocoapod?

Time:11-11

I use pod 'LinqToObjectiveC' to install this specific cocoapod but i get back [!] Unknown command: LinqToObjectiveC Did you mean: deintegrate?

There are no specific instructions at https://cocoapods.org/pods/LinqToObjectiveC I do not know if i can install it using the pod command or not. Any help to install it via pod command?

CodePudding user response:

You need to add the following lines to your Podfile: pod 'LinqToObjectiveC', '~> 2.1'

more info: https://cocoapods.org/pods/LinqToObjectiveC

  • Related