Skip to content

navisingh/DTCoreText

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DTCoreText

This project aims to duplicate the methods present on Mac OSX which allow creation of NSAttributedString from HTML code on iOS. Previously we referred to it as NSAttributedString+HTML (or NSAS+HTML in short) but this only covers about half of what this framework does.

Please support us so that we can continue to make DTCoreText even more awesome!

PayPal - The safer, easier way to pay online!

The project covers two broad areas:

  1. Layouting - Interfacing with CoreText, generating NSAttributedString instances from HTML code
  2. UI - several UI-related classes render these objects

This is useful for drawing simple rich text like any HTML document without having to use a UIWebView.

Please read the Q&A.

Your help is much appreciated. Please send pull requests for useful additions you make or ask me what work is required.

If you find brief test cases where the created NSAttributedString differs from the version on OSX please send them to us!

Follow @cocoanetics on Twitter.

License

It is open source and covered by a standard BSD license. That means you have to mention Cocoanetics as the original author of this code. You can purchase a Non-Attribution-License from us.

Documentation

Documentation can be browsed online or installed in your Xcode Organizer via the Atom Feed URL.

Usage

DTCoreText needs a minimum iOS deployment target of 4.3 because of:

  • NSCache
  • GCD-based threading and locking
  • Blocks
  • ARC

The best way to use DTCoreText with Xcode 4.2 is to add it in Xcode as a subproject of your project with the following steps.

  1. Download DTCoreText as a subfolder of your project folder

  2. Open the destination project and drag DTCoreText.xcodeproj as a subordinate item in the Project Navigator

  3. In your prefix.pch file add:

     #import "DTCoreText.h"
    
  4. In your application target's Build Phases add the "Static Library" from the DTCoreText sub-project as a dependency.

  5. In your application target's Build Phases add all of the below to the Link Binary With Libraries phase (you can also do this from the Target's Summary view in the Linked Frameworks and Libraries):

     The "Static Library" target from the DTCoreText sub-project
     ImageIO.framework
     QuartzCore.framework
     libxml2.dylib
     CoreText.framework (DOH!)
    
  6. Go to File: Project Settings… and change the derived data location to project-relative.

  7. Add the DerivedData folder to your git ignore.

  8. In your application's target Build Settings:

    • Set the "User Header Search Paths" to the directory containing your project with recrusive set to YES.
    • Set the Header Search Paths to /usr/include/libxml2.
    • Set "Always Search User Paths" to YES.
    • Set the "Other Linker Flags" below

If you do not want to deal with Git submodules simply add DTCoreText to your project's git ignore file and pull updates to DTCoreText as its own independent Git repository. Otherwise you are free to add DTCoreText as a submodule.

LINKER SETTINGS:

  • add the -ObjC to your app target's "Other Linker Flags". This is needed whenever you link in any static library that contains Objective-C classes and categories.
  • if you find that your app crashes with an unrecognized selector from one of this library's categories, you might also need the -all_load linker flag. Alternatively you can use -force-load with the full path to the static library. This causes the linker to load all categories from the static library.
  • If your app does not use ARC yet (but DTCoreText does) then you also need the -fobjc-arc linker flag.

Other Options (only mentioned for completeness)

  • Copy all classes and headers from the Core/Source folder to your project. Note for this you need to also generate and include the xxd'ed version of default.css.
  • Link your project against the libDTCoreText static library that you previously compiled. Note that the "Static Library" target does not produce a universal library. You will also need to add all header files contained in the Core/Source folder to your project.
  • Link your project against the universal static library produced from the "Static Framework".

Known Issues

CoreText has a problem prior to iOS 5 where it takes around a second on device to initialize its internal font lookup table. You have two workarounds available:

Some combinations of fonts and unusual list types cause an extra space to appear. e.g. 20 px Courier + Circle

In many aspects DTCoreText is superior to the Mac version of generating NSAttributedStrings from HTML. These become apparent in the MacUnitTest where the output from both is directly compared. I am summarizing them here for references.

In the following "Mac" means the initWithHTML: methods there, "DTCoreText" means DTCoreText's initWithHTML and/or DTHTMLAttributedStringBuilder.

  • Mac does not support the video tag, DTCoreText does.
  • DTCoreText is able to synthesize small caps by putting all characters in upper case and using a second smaller font for lowercase characters.
  • I suspect that Mac makes use of the -webkit-margin-* CSS styles for spacing the paragraphs, DTCoreText only uses the -webkit-margin-bottom and margin-bottom at present.
  • Mac supports CSS following addresses, e.g. "ul ul" to change the list style for stacked lists. DTCoreText does not support that and so list bullets stay the same for multiple levels.
  • Mac outputs newlines in PRE tags as \n, iOS replaces these with Unicode Line Feed characters so that the paragraph spacing is applied at the end of the PRE tag, not after each line. (iOS wraps code lines when layouting)
  • Mac does not properly encode a double list start. iOS prints the empty list prefix.
  • Mac seems to ignore list-style-position:outside, iOS does the right thing.

If you find an issue then you are welcome to fix it and contribute your fix via a GitHub pull request.

About

Methods to allow using HTML code with CoreText

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Objective-C 99.5%
  • Other 0.5%