Skip to content

Commit bca76aa

Browse files
author
Martin Kluska
committed
removed NSLog + added gitignore
1 parent 1fe798a commit bca76aa

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Created by https://www.gitignore.io/api/xcode
2+
3+
### Xcode ###
4+
# Xcode
5+
#
6+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
7+
8+
## Build generated
9+
build/
10+
DerivedData/
11+
12+
## Various settings
13+
*.pbxuser
14+
!default.pbxuser
15+
*.mode1v3
16+
!default.mode1v3
17+
*.mode2v3
18+
!default.mode2v3
19+
*.perspectivev3
20+
!default.perspectivev3
21+
xcuserdata/
22+
23+
## Other
24+
*.moved-aside
25+
*.xccheckout
26+
*.xcscmblueprint
27+

SPUserResizableView/SPUserResizableView.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ - (void)resizeUsingTouchLocation:(CGPoint)touchPoint {
232232
return;
233233
}
234234

235-
NSLog(@"Touch point %@",NSStringFromCGPoint(touchPoint));
235+
//NSLog(@"Touch point %@",NSStringFromCGPoint(touchPoint));
236236
// save current rotation and scales
237237
CGFloat scaleX = [[self valueForKeyPath:@"layer.transform.scale.x"] floatValue];
238238
CGFloat scaleY = [[self valueForKeyPath:@"layer.transform.scale.y"] floatValue];
@@ -243,7 +243,7 @@ - (void)resizeUsingTouchLocation:(CGPoint)touchPoint {
243243
//NSLog(@"H %f, W %f, X %f, Y %f", anchorPoint.adjustsH, anchorPoint.adjustsW, anchorPoint.adjustsX, anchorPoint.adjustsY);
244244

245245

246-
NSLog(@"Rotation %f",RADIANS_TO_DEGREES(rotation));
246+
//NSLog(@"Rotation %f",RADIANS_TO_DEGREES(rotation));
247247

248248

249249
CGPoint point;

0 commit comments

Comments
 (0)