Skip to content

kisekied/HLChainKit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HLChainKit

Description:

使用链式语法代替OC系统库里的一些冗长的语句,逐步更新中...

Sample:

Before:

// original
[path moveToPoint:p1];
[path addLineToPoint:p2];
[path addLineToPoint:p3];
[path closePath];

After:

// current
path.moveTo(p1).lineTo(p2).lineTo(p3).close();

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published