Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 347 Bytes

File metadata and controls

14 lines (11 loc) · 347 Bytes

Libxml2Module

Wrapper over xml2 lib to use it in Objective-C modules with @import Libxml2...; for iOS Simulator and iOS Device.

You need to add conditional import by platform for correct usage in Objective-C:

#if TARGET_OS_SIMULATOR
@import Libxml2.Simulator;
#else
@import Libxml2.Device;
#endif

Now supports Xcode 8.3