iOS仿美团购物车效果
@protocol ThrowLineToolDelegate; @interface ThrowLineTool : NSObject @property (nonatomic, assign) id<ThrowLineToolDelegate>delegate; @property (nonatomic, retain) UIView *showingView; + (ThrowLineTool *)sharedTool; /** * 将某个view或者layer从起点抛到终点 * * @param obj 被抛的物体 * @param start 起点坐标 * @param end 终点坐标 * @param height 高度,抛物线最高点比起点/终点y坐标最低(即高度最高)所超出的高度 */ - (void)throwObject:(UIView *)obj from:(CGPoint)start to:(CGPoint)end height:(CGFloat)height duration:(CGFloat)duration; @end @protocol ThrowLineToolDelegate <NSObject> /** * 抛物线结束的回调 */ - (void)animationDidFinish; @end
本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!