Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 671 Bytes

README.md

File metadata and controls

24 lines (15 loc) · 671 Bytes

KKDomain

A objc library which gives access to the PSL (Public Suffix List).

What is PSL?

The Public Suffix List is intended to enumerate all domain suffixes controlled by registrars.
A "public suffix" is also known by the older term effective top-level domain (eTLD).

How to use KKDomain?

If you use cocoapods just

pod 'KKDomain', :git => 'https://github.com/kejinlu/KKDomain.git'

else copy category files to your project

#import "NSString+KKDomain.h"
......

NSString *host = @"www.taobao.com";
NSLog(@"publicSuffix: %@",[host publicSuffix]);
NSLog(@"registeredDomain: %@",[host registeredDomain]);