- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有以下屏幕:
当我点击获取更多按钮时,它会添加新的圆形按钮。我在 UIView
上添加了 Pan Gesture,其中添加了所有圆形按钮,然后仅从圆形按钮绘制 UIBezierPath
。到目前为止,一切正常。
现在,我想要以下内容:
UIView
,它包含所有圆形按钮。这将为所有这些按钮绘制一条贝塞尔曲线路径。PlayGround UIView 子类引用以下代码:
@interface PlayGroundView : UIView
@property (nonatomic, weak) PlayGroundViewController *playViewController;
@end
#import "PlayGroundView.h"
#import "RoundedButton.h"
#import "PlayGroundViewController.h"
@interface PlayGroundView () {
UIBezierPath *path;
BOOL isDrawPointInside;
}
@end
@implementation PlayGroundView
#pragma mark - View Methods -
- (id)initWithCoder:(NSCoder *)aDecoder {
if (self = [super initWithCoder:aDecoder])
[self commonInit];
return self;
}
- (id)initWithFrame:(CGRect)frame {
if (self = [super initWithFrame:frame])
[self commonInit];
return self;
}
- (void)drawRect:(CGRect)rect {
[[UIColor redColor] setStroke];
[path stroke];
}
#pragma mark - Action Methods -
- (void)pan:(UIPanGestureRecognizer *)pan {
CGPoint currentPoint = [pan locationInView:self];
// NSLog(@"currentPoint: %@", NSStringFromCGPoint(currentPoint));
if (pan.state == UIGestureRecognizerStateBegan) {
NSMutableArray *buttonAry = [NSMutableArray array];
buttonAry = self.playViewController.rBtnOpponentPlayerList;
[buttonAry addObjectsFromArray:self.playViewController.rBtnPlayerList];
for (int i=0; i<buttonAry.count; i++) {
UIButton *btn = [buttonAry objectAtIndex:i];
CGRect nearByRect = CGRectMake(btn.frame.origin.x - 20, btn.frame.origin.y - 20, btn.frame.size.width + 40, btn.frame.size.height + 40);
if (CGRectContainsPoint(nearByRect, currentPoint)) {
isDrawPointInside = YES;
[path moveToPoint:btn.center];
// NSLog(@"point is inside....");
}
}
}
if (pan.state == UIGestureRecognizerStateChanged) {
if (isDrawPointInside) {
[path addLineToPoint:currentPoint];
[self setNeedsDisplay];
}
}
if (pan.state == UIGestureRecognizerStateEnded) {
isDrawPointInside = NO;
// NSLog(@"pan ended");
}
}
#pragma mark - Helper Methods -
- (void)commonInit {
path = [UIBezierPath bezierPath];
path.lineWidth = 3.0;
// Capture touches
UIPanGestureRecognizer *pan = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(pan:)];
pan.maximumNumberOfTouches = pan.minimumNumberOfTouches = 1;
[self addGestureRecognizer:pan];
// Erase with long press
[self addGestureRecognizer:[[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(erase)]];
}
- (void)erase {
path = [UIBezierPath bezierPath];
path.lineWidth = 3.0;
[self setNeedsDisplay];
}
@end
我仍然无法管理所有圆形按钮状态。让我知道在移动时管理圆形按钮所有步骤的最佳方法。
我已经提到:http://nachbaur.com/blog/core-animation-part-4
我的完整演示代码位于:https://www.dropbox.com/s/f0ri0bff8ioxtpz/FreeHandDrawingDemo%202.zip?dl=0
最佳答案
我假设,当你说“管理所有圆角按钮状态”时,你的意思是你想知道 View 已经开始动画,类似于 viewHasMovedABitAutomatically
回调:)如果是这样的话,据我所知,在 CA 框架中没有实现的方法来这样做。但是,看看这个问题:Core animation progress callback这是一种看起来很不错的解决方法,也许您可以从这里开始做一些事情。
哦,还有一件事。我看到您正在使用 Pan 手势识别器。我刚刚浏览了您的代码和 tarmes(另一个线程中的人 ;)),但我认为他正在使用 drawInContext
来检查正在绘制的图层。如果您的 View 是可拖动的,这也可能会触发,因此,如果是这种情况,请考虑在平移方法上使用一些 viewIsBeingDragged
标志,并在回调中检查它。
编辑:抱歉,这似乎与您的实际问题无关。我明白你的意思是控制动画速度所以他们都相应地移动。让我们详细说明一下。
据我所知,没有动画“步骤”这样的东西。动画图像将其向左移动 20 像素并不一定意味着图像将被重绘 20 次。图像将根据需要多次渲染,因此我们不能依赖渲染方法来计算它。据我所知,控制动画速度的唯一方法是通过 animateWithDuration:
的 duration
参数。你不知道持续时间,你想让速度恒定,所以持续时间是任何时间。
基础物理:持续时间等于距离除以速度,因此如果我们有需要覆盖的距离,我们可以轻松计算出动画持续时间。起初我以为 UIBezierPath 可能有一个方法或一个属性来计算总长度,但我错了。但是,在这个线程中 Get CGPath total length有一个代码是通过数值积分来计算它的,你应该测试它看看它是否有效。一旦你有了它,你就可以做这样的事情(我没有测试它,我只是输入伪代码)
#define SPEED_CALIBRATION 30.0 // or whatever
-(void)animateView:(UIView*)view withBezierPath:(UIBezierPath*)path {
CGFloat distance = [self getBezierPathDistance:path];
CGFloat duration = distance / SPEED_CALIBRATION;
[self animateView:view withDuration:duration andBezierPath:path];
}
是这样的。 getBezierPathDistance
是上述线程中的方法,假设它有效,animateView:withDuration:andBezierPath:
是您使用 CA 文档执行非线性动画的方法(我不太记得所有的细节,但我记得那是一段很长的代码 ;))。
很抱歉,如果答案有点含糊,希望对您有所帮助!
关于ios - 多个 UIView 的动画与 UIBezierPath,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29469326/
我有两个 UIBezierPath,一个表示图像的多边形部分,另一个是要在其上绘制的路径。 我需要找到它们之间的交点,以便只有在这个交点区域内的点才会被着色。 UIBezierPath 中是否有一种方
我正在制作一个应用程序,允许用户用手指在屏幕上绘制不同的颜色。图纸是用 UIBezierPaths 绘制的,但我需要橡皮擦。我确实有一个橡皮擦,它只是一条以背景图像为颜色的路径,但这种方法会导致内存问
我想用 SceneKit 画一条贝塞尔曲线,并认为这会起作用: func drawCurvedLine() { let scene = SCNScene() let scnView =
我在设置为 iPhone (Retina 4-inch) 的模拟器中运行此代码 -(void)drawRect:(CGRect)rect { [[UIColor whiteColor]set]
我想绘制月亮,然后为月亮的阴影设置动画。但启动此代码后,我可以在动画线上看到一些故障: GIF: 为什么会发生这种情况? Playground 代码 here 更新1:此函数创建的两条路径具有不同的角
假设我们有一个 UIBezierPath...它的边界是完全正方形的...像这样: func getExponentPath(rotate180: Bool) -> UIBezierPath {
我想绘制月亮,然后为月亮的阴影设置动画。但启动此代码后,我可以在动画线上看到一些故障: GIF: 为什么会发生这种情况? Playground 代码 here 更新1:此函数创建的两条路径具有不同的角
假设我们有一个 UIBezierPath...它的边界是完全正方形的...像这样: func getExponentPath(rotate180: Bool) -> UIBezierPath {
我正在试验 UIBezierPath。我想做一个 GridView 。 NSInteger yAxisIncremental = 0; NSInteger xAxisIncremental = 0;
我需要使用bezeirPath绘制此形状: 我做了以下事情: 我创建了矩形路径。 然后我添加了五个圈子。 如下面的代码所示: let stickLayerBezeirPath = UIBezierPa
我将 Apple 文档阅读到 UIBezierPath目的。我是否正确理解它不支持相对路径? 我正在尝试将此 svg 路径转换为 UIBezierPath: // svg path m90 36c
我正在尝试制作一个球从用户画线反弹的游戏。绘制线的代码包含在下面并且可以正常工作,但是一旦球与它接触或玩家画一条新线,我将如何删除线? path = [UIBezierPath bezierPath]
我想画一条这样的路径: 这就是我写的: CGFloat radius = 50; UIBezierPath *path = [UIBezierPath bezierPath]; [path moveT
我在 View 中有一个 UIBezierPath 。我想在单击形状时显示警报,但实际发生的情况是,不仅在我单击形状时显示警报,而且当我单击 View 中的任意位置时也会显示警报。 如何更改此代码,以
我正在尝试从圆形到带圆角的正方形制作动画。据我了解,对于流畅的动画,两条路径的点数应该相等。所以我写了一个基于多条弧构建圆的函数: private func circleShape(segmentNu
对于横向和纵向模式,是否可以将元素重置到相同的%位置(距x = 0轴的距离)?如果是的话你能告诉我怎么做吗?另外,由于我是 Swift 的新手,如果您发现任何错误的代码错误,请DO通知我以便得到更好的
我正在尝试在叠加渲染器中使用 UIBezierPath 绘制一些线条。我收到错误 CGContextSetStrokeColorWithColor: invalid context 0x0 我怀疑这是
我想圆化我的右角,但只适用于左角 let path = UIBezierPath(roundedRect: view.bounds, byRoundingCorners: [UIRectCorner.
我想圆化我的右角,但只适用于左角 let path = UIBezierPath(roundedRect: view.bounds, byRoundingCorners: [UIRectCorner.
当我尝试平移路径,将其移动到原点 {0, 0} 时,生成的路径边界错误。 (或者,我的假设是错误的)。 例如该路径给出以下边界信息: let bezier = UIBezierPath(cgPath:
我是一名优秀的程序员,十分优秀!