From 6f1feccc6a6fe1f83c74dfb0d580b10886334f68 Mon Sep 17 00:00:00 2001 From: devedbox Date: Fri, 14 Apr 2017 16:50:50 +0800 Subject: [PATCH] Deleted comments marks. --- AXAnimationChain/Classes/CALayer+AnchorPoint.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/AXAnimationChain/Classes/CALayer+AnchorPoint.h b/AXAnimationChain/Classes/CALayer+AnchorPoint.h index 37fa273..8647b11 100644 --- a/AXAnimationChain/Classes/CALayer+AnchorPoint.h +++ b/AXAnimationChain/Classes/CALayer+AnchorPoint.h @@ -25,41 +25,29 @@ #import /// Category to handler the anchor point. -/// @interface CALayer (AnchorPoint) /// Move anchor to a new anchor point. This will change the position of the layer. /// /// @param point a new anchor point. Between [0, 1]. -/// - (void)moveAnchorToPoint:(CGPoint)point; /// Move anchor point to default anchor value. -/// - (void)anchorToDefault; /// Move anchor point to center point. -/// - (void)anchorToCenter; /// Move anchor point to top. -/// - (void)anchorToTop; /// Move anchor point to left. -/// - (void)anchorToLeft; /// Move anchor point to bottom. -/// - (void)anchorToBottom; /// Move anchor point to right. -/// - (void)anchorToRight; /// Move anchor point to left-top. -/// - (void)anchorToLeftTop; /// Move anchor point to left-bottom. -/// - (void)anchorToLeftBottom; /// Move anchor point to right-top. -/// - (void)anchorToRightTop; /// Move anchor point to right-bottom. -/// - (void)anchorToRightBottom; @end