Skip to content

Commit 03ed90e

Browse files
committed
remove a bunch of parameter exclamation marks I think are wrong (mostly in CALayer)
1 parent 9854481 commit 03ed90e

File tree

16 files changed

+28
-26
lines changed

16 files changed

+28
-26
lines changed

bk2ch01p039conditionalConstraints/bk2ch01p039/Main.storyboard

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2-
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="6249" systemVersion="13F34" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="VVW-Se-F96">
2+
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="6250" systemVersion="13F34" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="VVW-Se-F96">
33
<dependencies>
4-
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="6243"/>
4+
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="6244"/>
55
<capability name="Aspect ratio constraints" minToolsVersion="5.1"/>
66
</dependencies>
77
<scenes>

bk2ch01p041designableView/bk2ch01p040sizeClasses/Base.lproj/Main.storyboard

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2-
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="6245" systemVersion="13E28" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" initialViewController="BYZ-38-t0r">
2+
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="6250" systemVersion="13F34" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" initialViewController="BYZ-38-t0r">
33
<dependencies>
4-
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="6238"/>
4+
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="6244"/>
55
</dependencies>
66
<scenes>
77
<!--View Controller-->

bk2ch01p045constraintsOrderOfEvents/ch14p398constraintsOrderOfEvents/MyView.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class MyView: UIView, Printable {
3232
}
3333

3434
// gets an extra cycle, I've no idea why
35-
override func layoutSublayersOfLayer(layer: CALayer!) {
35+
override func layoutSublayersOfLayer(layer: CALayer) {
3636
super.layoutSublayersOfLayer(layer)
3737
println("\(self)\n\(__FUNCTION__)\n")
3838
}

bk2ch01p046transformsAndConstraints/ch14p400transformsAndConstraints/LoggingView.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class LoggingView: UIView {
99
println("\(self) \(__FUNCTION__)\n")
1010
}
1111

12-
override func layoutSublayersOfLayer(layer: CALayer!) {
12+
override func layoutSublayersOfLayer(layer: CALayer) {
1313
super.layoutSublayersOfLayer(layer)
1414
println("\(self) \(__FUNCTION__)\n")
1515
}

bk2ch02p059sixBlueCircles/ch15p411sixBlueCircles/Views.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class MyView2 : UIView {
1818
}
1919
class MyView3 : UIView {
2020
override func drawRect(rect: CGRect) {}
21-
override func drawLayer(layer: CALayer!, inContext con: CGContext!) {
21+
override func drawLayer(layer: CALayer, inContext con: CGContext) {
2222
UIGraphicsPushContext(con)
2323
let p = UIBezierPath(ovalInRect: CGRectMake(0,0,100,100))
2424
UIColor.blueColor().setFill()
@@ -28,7 +28,7 @@ class MyView3 : UIView {
2828
}
2929
class MyView4 : UIView {
3030
override func drawRect(rect: CGRect) {}
31-
override func drawLayer(layer: CALayer!, inContext con: CGContext!) {
31+
override func drawLayer(layer: CALayer, inContext con: CGContext) {
3232
CGContextAddEllipseInRect(con, CGRectMake(0,0,100,100))
3333
CGContextSetFillColorWithColor(con, UIColor.blueColor().CGColor)
3434
CGContextFillPath(con)

bk2ch03p101drawingIntoLayer/ch16p450drawingIntoLayer/Smilers.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import UIKit
44

55

66
class Smiler:NSObject {
7-
override func drawLayer(layer: CALayer!, inContext ctx: CGContext!) {
7+
override func drawLayer(layer: CALayer, inContext ctx: CGContext) {
88
UIGraphicsPushContext(ctx)
99
//[[UIImage imageNamed: @"smiley"] drawInRect:CGContextGetClipBoundingBox(ctx)];
1010
UIImage(named:"smiley")!.drawAtPoint(CGPoint())
@@ -15,15 +15,15 @@ class Smiler:NSObject {
1515
}
1616

1717
class Smiler2:NSObject {
18-
override func displayLayer(layer: CALayer!) {
18+
override func displayLayer(layer: CALayer) {
1919
layer.contents = UIImage(named:"smiley")!.CGImage
2020
println("\(__FUNCTION__)")
2121
println(layer.contentsGravity)
2222
}
2323
}
2424

2525
class SmilerLayer:CALayer {
26-
override func drawInContext(ctx: CGContext!) {
26+
override func drawInContext(ctx: CGContext) {
2727
UIGraphicsPushContext(ctx)
2828
//[[UIImage imageNamed: @"smiley"] drawInRect:CGContextGetClipBoundingBox(ctx)];
2929
UIImage(named:"smiley")!.drawAtPoint(CGPoint())

bk2ch03p108compass/ch16p457compass/CompassView.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ class CompassLayer : CALayer {
104104

105105
}
106106

107-
override func drawLayer(layer: CALayer!, inContext con: CGContext!) {
107+
override func drawLayer(layer: CALayer, inContext con: CGContext) {
108108
println("drawLayer:inContext: for arrow")
109109

110110
// Questa poi la conosco pur troppo!

bk2ch03p112layerDepth/ch16p457compass/CompassView.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ class CompassLayer : CALayer {
123123

124124
}
125125

126-
override func drawLayer(layer: CALayer!, inContext con: CGContext!) {
126+
override func drawLayer(layer: CALayer, inContext con: CGContext) {
127127
println("drawLayer:inContext: for arrow")
128128

129129
// Questa poi la conosco pur troppo!

bk2ch03p114transformLayer2/ch16p457compass/CompassView.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ class CompassLayer : CALayer {
149149

150150
}
151151

152-
override func drawLayer(layer: CALayer!, inContext con: CGContext!) {
152+
override func drawLayer(layer: CALayer, inContext con: CGContext) {
153153
println("drawLayer:inContext: for arrow")
154154

155155
// Questa poi la conosco pur troppo!

bk2ch04p148layerAnimation/ch17p490layerAnimation/CompassView.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ class CompassLayer : CALayer {
9191

9292
}
9393

94-
override func drawLayer(layer: CALayer!, inContext con: CGContext!) {
94+
override func drawLayer(layer: CALayer, inContext con: CGContext) {
9595
println("drawLayer:inContext: for arrow")
9696

9797
// Questa poi la conosco pur troppo!

bk2ch04p151customAnimatableProperty/ch17p498customAnimatableProperty/MyViewAndLayer.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ class MyLayer : CALayer {
1414

1515
var thickness : CGFloat = 0
1616

17-
override class func needsDisplayForKey(key: String!) -> Bool {
17+
override class func needsDisplayForKey(key: String) -> Bool {
1818
if key == "thickness" {
1919
return true
2020
}
2121
return super.needsDisplayForKey(key)
2222
}
2323

24-
override func drawInContext(con: CGContext!) {
24+
override func drawInContext(con: CGContext) {
2525
let r = self.bounds.rectByInsetting(dx:20, dy:20)
2626
CGContextSetFillColorWithColor(con, UIColor.redColor().CGColor)
2727
CGContextFillRect(con, r)

bk2ch04p165customAnimatableProperty2/ch17p498customAnimatableProperty/MyViewAndLayer.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public extension MyLayer {
2424
return super.needsDisplayForKey(key)
2525
}
2626

27-
override func drawInContext(con: CGContext!) {
27+
override func drawInContext(con: CGContext) {
2828
let r = self.bounds.rectByInsetting(dx:20, dy:20)
2929
CGContextSetFillColorWithColor(con, UIColor.redColor().CGColor)
3030
CGContextFillRect(con, r)

bk2ch04p177dynamics2/Dynamics/MyDropBounceAndRollBehavior.swift

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ class MyDropBounceAndRollBehavior : UIDynamicBehavior, UICollisionBehaviorDelega
1010
super.init()
1111
}
1212

13+
// exclamation mark instead of question mark is deliberate so I don't have to keep unwrapping!
14+
1315
override func willMoveToAnimator(anim: UIDynamicAnimator!) {
1416
if anim == nil { return }
1517

bk2ch04p177dynamics2/Dynamics/ViewController.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ class ViewController : UIViewController, UIDynamicAnimatorDelegate {
2626
self.anim.addBehavior(MyDropBounceAndRollBehavior(view:self.iv))
2727
}
2828

29-
func dynamicAnimatorDidPause(animator: UIDynamicAnimator!) {
29+
func dynamicAnimatorDidPause(animator: UIDynamicAnimator) {
3030
println("pause")
3131
}
3232

33-
func dynamicAnimatorWillResume(animator: UIDynamicAnimator!) {
33+
func dynamicAnimatorWillResume(animator: UIDynamicAnimator) {
3434
println("resume")
3535
}
3636

bk2ch05p203gestureRecognizers/ch18p541gestureRecognizers/HorizVertPanGestureRecognizers.swift

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ import UIKit
66
class HorizPanGestureRecognizer : UIPanGestureRecognizer {
77
var origLoc : CGPoint!
88

9-
override func touchesBegan(touches: NSSet!, withEvent event: UIEvent!) {
9+
override func touchesBegan(touches: NSSet, withEvent event: UIEvent) {
1010
self.origLoc = (touches.anyObject() as UITouch).locationInView(self.view!.superview)
1111
super.touchesBegan(touches, withEvent:event)
1212
}
1313

14-
override func touchesMoved(touches: NSSet!, withEvent event: UIEvent!) {
14+
override func touchesMoved(touches: NSSet, withEvent event: UIEvent) {
1515
if self.state == .Possible {
1616
let loc = (touches.anyObject() as UITouch).locationInView(self.view!.superview)
1717
let deltaX = fabs(loc.x - self.origLoc.x)
@@ -34,12 +34,12 @@ class HorizPanGestureRecognizer : UIPanGestureRecognizer {
3434
class VertPanGestureRecognizer : UIPanGestureRecognizer {
3535
var origLoc : CGPoint!
3636

37-
override func touchesBegan(touches: NSSet!, withEvent event: UIEvent!) {
37+
override func touchesBegan(touches: NSSet, withEvent event: UIEvent) {
3838
self.origLoc = (touches.anyObject() as UITouch).locationInView(self.view!.superview)
3939
super.touchesBegan(touches, withEvent:event)
4040
}
4141

42-
override func touchesMoved(touches: NSSet!, withEvent event: UIEvent!) {
42+
override func touchesMoved(touches: NSSet, withEvent event: UIEvent) {
4343
if self.state == .Possible {
4444
let loc = (touches.anyObject() as UITouch).locationInView(self.view!.superview)
4545
let deltaX = fabs(loc.x - self.origLoc.x)

bk2ch05p211compassTappable/ch17p490layerAnimation/CompassView.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class CompassLayer : CALayer {
4040
}
4141
}
4242

43-
override func hitTest(p: CGPoint) -> CALayer! {
43+
override func hitTest(p: CGPoint) -> CALayer? {
4444
var lay = super.hitTest(p)
4545
if lay == self.arrow {
4646
// artificially restrict touchability to roughly the shaft/point area
@@ -122,7 +122,7 @@ class CompassLayer : CALayer {
122122

123123
}
124124

125-
override func drawLayer(layer: CALayer!, inContext con: CGContext!) {
125+
override func drawLayer(layer: CALayer, inContext con: CGContext) {
126126
println("drawLayer:inContext: for arrow")
127127

128128
// Questa poi la conosco pur troppo!

0 commit comments

Comments
 (0)