ios - 传递给不带参数的调用的参数

标签 ios swift xcode

我正在向 uiview 添加一个动画圆圈。在这行代码中:

  var circleView = addCircleView(frame: CGRectMake(diceRoll, 0, circleWidth, circleHeight))

我收到一个错误,显示“传递给不带参数的调用的参数”指向 CGRectMake。 我附上了其余代码,以备不时之需

import UIKit
import CoreMotion
import CoreGraphics

class Animation: UIView {
var circleLayer: CAShapeLayer!

override init(frame: CGRect) {
    super.init(frame: frame)
    self.backgroundColor = UIColor.clear

    // Use UIBezierPath as an easy way to create the CGPath for the layer.
    // The path should be the entire circle.
    let circlePath = UIBezierPath(arcCenter: CGPoint(x: frame.size.width / 2.0, y: frame.size.height / 2.0), radius: (frame.size.width - 10)/2, startAngle: 0.0, endAngle: CGFloat(M_PI * 2.0), clockwise: true)

    // Setup the CAShapeLayer with the path, colors, and line width
    circleLayer = CAShapeLayer()
    circleLayer.path = circlePath.cgPath
    circleLayer.fillColor = UIColor.clear.cgColor
    circleLayer.strokeColor = UIColor.red.cgColor
    circleLayer.lineWidth = 5.0;

    // Don't draw the circle initially
    circleLayer.strokeEnd = 0.0

    // Add the circleLayer to the view's layer's sublayers
    layer.addSublayer(circleLayer)
}

required init?(coder aDecoder: NSCoder) {
    fatalError("init(coder:) has not been implemented")
}
func animateCircle(duration: TimeInterval) {
    // We want to animate the strokeEnd property of the circleLayer
    let animation = CABasicAnimation(keyPath: "strokeEnd")

    // Set the animation duration appropriately
    animation.duration = duration

    // Animate from 0 (no circle) to 1 (full circle)
    animation.fromValue = 0
    animation.toValue = 1

    // Do a linear animation (i.e. the speed of the animation stays the same)
    animation.timingFunction = CAMediaTimingFunction(name: kCAMediaTimingFunctionLinear)

    // Set the circleLayer's strokeEnd property to 1.0 now so that it's the
    // right value when the animation ends.
    circleLayer.strokeEnd = 1.0

    // Do the actual animation
    circleLayer.add(animation, forKey: "animateCircle")
}
func addCircleView() {
    let diceRoll = CGFloat(Int(arc4random_uniform(7))*50)
    var circleWidth = CGFloat(200)
    var circleHeight = circleWidth

    // Create a new CircleView
    var circleView = addCircleView(frame: CGRectMake(diceRoll, 0, circleWidth, circleHeight))

    UIView.addSubview(circleView)

    // Animate the drawing of the circle over the course of 1 second
    circleView.animateCircle(1.0)
}

致谢 Mike S

最佳答案

虽然我将 CGRectMake 的所有引用更改为 CGRect,但问题在于对 addCircle() 的调用。您没有定义任何参数。

尝试将事情更改为:

func addCircleView(frame: CGRect) {

或者,由于 addCircleView 看起来没有使用此参数,请尝试从对 addCircle() 的调用中删除 CGRect/CGRectMake:

var circleView = addCircleView()

(看起来您可能想要前者。)

关于ios - 传递给不带参数的调用的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41580343/

相关文章:

ios - 快速约束到主视图顶部,没有导航栏

ios - 检查用户实际移动的时间

c++ - 使用 C++ 的 OpenGL 基本三角形渲染不工作

ios - 为什么移动父 View 不移动 subview ?

ios - 快速检查网络速度

ios - 如何检测字节序以与 iOS 保持一致的字节顺序

ios - 使用 AutoLayout/UIScrollView 设置约束时了解 UIView 高度

ios - awakeFromNib vs Outlets - 当我们调用 awakeFromNib 时设置 outlets 和 segues

swift - 无法将事件添加到 Storyboard 中的按钮

ios - XCode 无法识别 IOS 分发证书