2

I need to parse a html string on iOS, I came across to Raywenderlich tutorial by using libxml2 and hpple. I already go to the website http://www.xmlsoft.org, but I can't find the download link or maybe something that direct to it. I'm quite experienced on Obj-C, but I', fairly new to C. How to get the dylib? maybe by compiling my self? could you give me the step how to do it?

Wayne Chen
  • 305
  • 2
  • 15
Tek Yin
  • 3,011
  • 3
  • 25
  • 42

2 Answers2

0

As you included the iOS tag, I suspect you are developing an iOS app and going to ignore your remark regarding C.

You can simply include it; it's in the list of available frameworks and libraries to link to.

Tobi Nary
  • 4,566
  • 4
  • 30
  • 50
0

Apple made it easy.

Follow the steps from 1 to 8 in screenshots,

enter image description here

enter image description here

and you're done! enter image description here

Note, Most of the frameworks you can add by following the above steps.

Hemang
  • 26,840
  • 19
  • 119
  • 186
  • Thanks.. It made me realize that the libs is already available by xcode, but I can't add the libs by adding like that on XCode 7. the additional solution is on http://stackoverflow.com/questions/32734097/xcode7-ios9-about-libz-tbd-is-not-an-object-file-not-allowed-in-a-library – Tek Yin Jan 27 '16 at 18:35