Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialDaniel Loren
10,318 PointsHow can I add points to both height and width in the same method?
I tried two return statements but it does not work
class Button {
var width: Double
var height: Double
init(width:Double, height:Double){
self.width = width
self.height = height
}
func incrementBy(points: Double) {
return self.width = width + points
return self.height = height + points
}
}
1 Answer
Michael Hulet
47,913 PointsIt doesn't seem like there's a need to return
anything.. Just have the function return Void
and let it increment the instance variables, like this:
func incrementBy(points: Double) -> Void {
width += points
height += points
}
If you must return
both the width
& height
(which it doesn't seem like it's the case), you can return
both of them in a tuple, like this:
func incrementBy(points: Double) -> (newWidth: Double, newHeight: Double){
width += points
height += points
return (newWidth: width, newHeight: height)
}
Daniel Loren
10,318 PointsDaniel Loren
10,318 PointsThank you Sir! Make total sense. And thank you for showing me the += sign totally forgot about it. Makes the code way cleaner