Which is the preferred method of importing for a source file from a Third Party?
I have the third party library (YLTableView) installed via CocoaPods.
e.g.
#import "YLTableViewDataSource.h"
or
#import <YLTableView/YLTableViewDataSourceSubclass.h>
Please provide reasoning as to why one is preferrable over the other.