├── BKHitSlop ├── BKHitSlop.h ├── UIView+BKHitSlop.h └── UIView+BKHitSlop.m ├── BKHitSlop.podspec ├── LICENSE ├── README.md ├── .gitignore └── BKHitSlop.xcodeproj └── project.pbxproj /BKHitSlop/BKHitSlop.h: -------------------------------------------------------------------------------- 1 | // Copyright 2014-present 650 Industries. All rights reserved. 2 | 3 | #import -------------------------------------------------------------------------------- /BKHitSlop/UIView+BKHitSlop.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present 650 Industries, Inc. All rights reserved. 2 | 3 | @import UIKit; 4 | 5 | @interface UIView (BKHitSlop) 6 | 7 | @property (nonatomic, assign, setter=bk_setHitSlop:, getter=bk_hitSlop) UIEdgeInsets bk_hitSlop; 8 | 9 | @end 10 | -------------------------------------------------------------------------------- /BKHitSlop.podspec: -------------------------------------------------------------------------------- 1 | Pod::Spec.new do |s| 2 | s.name = "BKHitSlop" 3 | s.version = "1.0.0" 4 | s.summary = "A simple swizzle to allow UIViews to respond to touches outside their visible bounds." 5 | s.description = <<-DESC 6 | This is mostly useful for UIButtons for which a specific size/positioning is desired, but which should also be responsive to touches outside of its drawn area. 7 | DESC 8 | s.homepage = "https://github.com/Basket/BKHitSlop" 9 | s.license = 'MIT' 10 | s.author = { "Andrew Toulouse" => "andrew@atoulou.se" } 11 | s.source = { :git => "https://github.com/Basket/BKHitSlop.git", :tag => s.version.to_s } 12 | 13 | s.platform = :ios, '7.0' 14 | s.requires_arc = true 15 | 16 | s.source_files = 'BKHitSlop/*.{h,m}' 17 | s.frameworks = 'UIKit' 18 | end 19 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 650 Industries, Inc. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # BKHitSlop 2 | 3 | ## Installation 4 | 5 | 1. Add BKHitSlop to your Podfile. 6 | 2. In your terminal, run `pod install`. 7 | 8 | ## Usage 9 | 10 | 11 | 1. Add `#import ` to your source file (or to your prefix header, if you want to access it anywhere in your project). 12 | 2. Implement the method `myButton.bk_hitSlop = UIEdgeInsetsMake(-50, -50, -50, -50); 13 | ` on your button (or other UIView) - or your preferred UIEdgeInsets value. Negative values are ignored. 14 | 15 | ## FAQ 16 | 17 | **Q:** How does it work? 18 | **A:** Simple! UIViews have a method `-pointInside:withEvent:` which decides whether an event's point (presumably, a touch's point) lies inside itself. When you touch the screen, the UIView hierarchy queries for the "best" view to respond to that touch. BKHitSlop swaps the implementation out for our own. This is (mostly) safe. 19 | 20 | When you set the hit slop, first, we check if the point would normally be considered inside the view, according to the original implementation - if so, we just short-circuit and return YES. Otherwise, the views' bounds are inset by the UIEdgeInsets value. 21 | 22 | _Aside: This is why the inset's components don't have any effect unless negative. Note that a negative inset goes **outward** rather than **inward**._ 23 | 24 | Anyways, once we've done that to figure out the new rectangle to test, we use `CGRectContainsPoint` to see if the point is inside that rectangle. 25 | -------------------------------------------------------------------------------- /BKHitSlop/UIView+BKHitSlop.m: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present 650 Industries, Inc. All rights reserved. 2 | 3 | #import "UIView+BKHitSlop.h" 4 | 5 | @import ObjectiveC; 6 | 7 | static const void *UIViewBKHitSlopKey = "UIViewBKHitSlopKey"; 8 | 9 | static IMP __original_pointInside_withEvent_; 10 | BOOL __swizzled_pointInside_withEvent_(UIView *self, SEL _cmd, CGPoint point, UIEvent *event); 11 | 12 | @implementation UIView (BKHitSlop) 13 | 14 | - (UIEdgeInsets)bk_hitSlop 15 | { 16 | NSValue *value = objc_getAssociatedObject(self, UIViewBKHitSlopKey); 17 | if (value) { 18 | return [value UIEdgeInsetsValue]; 19 | } else { 20 | return UIEdgeInsetsZero; 21 | } 22 | } 23 | 24 | - (void)bk_setHitSlop:(UIEdgeInsets)hitSlop 25 | { 26 | NSValue *value = [NSValue valueWithUIEdgeInsets:hitSlop]; 27 | objc_setAssociatedObject(self, UIViewBKHitSlopKey, value, OBJC_ASSOCIATION_COPY_NONATOMIC); 28 | } 29 | 30 | + (void)load 31 | { 32 | static dispatch_once_t onceToken; 33 | dispatch_once(&onceToken, ^{ 34 | // The right way to swizzle, according to http://blog.newrelic.com/2014/04/16/right-way-to-swizzle/ 35 | Method pointInside_withEvent_ = class_getInstanceMethod([UIView class], @selector(pointInside:withEvent:)); 36 | __original_pointInside_withEvent_ = method_setImplementation(pointInside_withEvent_, (IMP)__swizzled_pointInside_withEvent_); 37 | }); 38 | } 39 | 40 | @end 41 | 42 | BOOL __swizzled_pointInside_withEvent_(UIView *self, SEL _cmd, CGPoint point, UIEvent *event) { 43 | 44 | BOOL pointInside = ((BOOL(*)(id, SEL, CGPoint, UIEvent *))__original_pointInside_withEvent_)(self, _cmd, point, event); 45 | if (pointInside) { 46 | return YES; 47 | } 48 | 49 | CGRect bounds = self.bounds; 50 | CGRect sloppedRect = UIEdgeInsetsInsetRect(bounds, self.bk_hitSlop); 51 | return CGRectContainsPoint(sloppedRect, point); 52 | } 53 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ######################### 2 | # .gitignore file for Xcode4 / OS X Source projects 3 | # 4 | # Version 2.0 5 | # For latest version, see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects 6 | # 7 | # 2013 updates: 8 | # - fixed the broken "save personal Schemes" 9 | # 10 | # NB: if you are storing "built" products, this WILL NOT WORK, 11 | # and you should use a different .gitignore (or none at all) 12 | # This file is for SOURCE projects, where there are many extra 13 | # files that we want to exclude 14 | # 15 | ######################### 16 | 17 | ##### 18 | # OS X temporary files that should never be committed 19 | 20 | .DS_Store 21 | *.swp 22 | *.lock 23 | profile 24 | 25 | 26 | #### 27 | # Xcode temporary files that should never be committed 28 | # 29 | # NB: NIB/XIB files still exist even on Storyboard projects, so we want this... 30 | 31 | *~.nib 32 | 33 | 34 | #### 35 | # Xcode build files - 36 | # 37 | # NB: slash on the end, so we only remove the FOLDER, not any files that were badly named "DerivedData" 38 | 39 | DerivedData/ 40 | 41 | # NB: slash on the end, so we only remove the FOLDER, not any files that were badly named "build" 42 | 43 | build/ 44 | 45 | 46 | ##### 47 | # Xcode private settings (window sizes, bookmarks, breakpoints, custom executables, smart groups) 48 | # 49 | # This is complicated: 50 | # 51 | # SOMETIMES you need to put this file in version control. 52 | # Apple designed it poorly - if you use "custom executables", they are 53 | # saved in this file. 54 | # 99% of projects do NOT use those, so they do NOT want to version control this file. 55 | # ..but if you're in the 1%, comment out the line "*.pbxuser" 56 | 57 | *.pbxuser 58 | *.mode1v3 59 | *.mode2v3 60 | *.perspectivev3 61 | # NB: also, whitelist the default ones, some projects need to use these 62 | !default.pbxuser 63 | !default.mode1v3 64 | !default.mode2v3 65 | !default.perspectivev3 66 | 67 | 68 | #### 69 | # Xcode 4 - semi-personal settings 70 | # 71 | # 72 | # OPTION 1: --------------------------------- 73 | # throw away ALL personal settings (including custom schemes! 74 | # - unless they are "shared") 75 | # 76 | # NB: this is exclusive with OPTION 2 below 77 | xcuserdata 78 | 79 | # OPTION 2: --------------------------------- 80 | # get rid of ALL personal settings, but KEEP SOME OF THEM 81 | # - NB: you must manually uncomment the bits you want to keep 82 | # 83 | # NB: this is exclusive with OPTION 1 above 84 | # 85 | #xcuserdata/**/* 86 | 87 | # (requires option 2 above): Personal Schemes 88 | # 89 | #!xcuserdata/**/xcschemes/* 90 | 91 | #### 92 | # XCode 4 workspaces - more detailed 93 | # 94 | # Workspaces are important! They are a core feature of Xcode - don't exclude them :) 95 | # 96 | # Workspace layout is quite spammy. For reference: 97 | # 98 | # /(root)/ 99 | # /(project-name).xcodeproj/ 100 | # project.pbxproj 101 | # /project.xcworkspace/ 102 | # contents.xcworkspacedata 103 | # /xcuserdata/ 104 | # /(your name)/xcuserdatad/ 105 | # UserInterfaceState.xcuserstate 106 | # /xcsshareddata/ 107 | # /xcschemes/ 108 | # (shared scheme name).xcscheme 109 | # /xcuserdata/ 110 | # /(your name)/xcuserdatad/ 111 | # (private scheme).xcscheme 112 | # xcschememanagement.plist 113 | # 114 | # 115 | 116 | #### 117 | # Xcode 4 - Deprecated classes 118 | # 119 | # Allegedly, if you manually "deprecate" your classes, they get moved here. 120 | # 121 | # We're using source-control, so this is a "feature" that we do not want! 122 | 123 | *.moved-aside 124 | 125 | 126 | #### 127 | # UNKNOWN: recommended by others, but I can't discover what these files are 128 | # 129 | # ...none. Everything is now explained. -------------------------------------------------------------------------------- /BKHitSlop.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 6BEE09EE19870A1800D73B41 /* BKHitSlop.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 6BEE09ED19870A1800D73B41 /* BKHitSlop.h */; }; 11 | 6BEE0A0619870AC000D73B41 /* UIView+BKHitSlop.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BEE0A0519870AC000D73B41 /* UIView+BKHitSlop.m */; }; 12 | 6BEE0A0719870BE500D73B41 /* UIView+BKHitSlop.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 6BEE0A0419870AC000D73B41 /* UIView+BKHitSlop.h */; }; 13 | /* End PBXBuildFile section */ 14 | 15 | /* Begin PBXCopyFilesBuildPhase section */ 16 | 6BEE09E819870A1800D73B41 /* CopyFiles */ = { 17 | isa = PBXCopyFilesBuildPhase; 18 | buildActionMask = 2147483647; 19 | dstPath = "include/$(PRODUCT_NAME)"; 20 | dstSubfolderSpec = 16; 21 | files = ( 22 | 6BEE09EE19870A1800D73B41 /* BKHitSlop.h in CopyFiles */, 23 | 6BEE0A0719870BE500D73B41 /* UIView+BKHitSlop.h in CopyFiles */, 24 | ); 25 | runOnlyForDeploymentPostprocessing = 0; 26 | }; 27 | /* End PBXCopyFilesBuildPhase section */ 28 | 29 | /* Begin PBXFileReference section */ 30 | 6BEE09EA19870A1800D73B41 /* libBKHitSlop.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libBKHitSlop.a; sourceTree = BUILT_PRODUCTS_DIR; }; 31 | 6BEE09ED19870A1800D73B41 /* BKHitSlop.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BKHitSlop.h; sourceTree = ""; }; 32 | 6BEE0A0419870AC000D73B41 /* UIView+BKHitSlop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+BKHitSlop.h"; sourceTree = ""; }; 33 | 6BEE0A0519870AC000D73B41 /* UIView+BKHitSlop.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+BKHitSlop.m"; sourceTree = ""; }; 34 | /* End PBXFileReference section */ 35 | 36 | /* Begin PBXFrameworksBuildPhase section */ 37 | 6BEE09E719870A1800D73B41 /* Frameworks */ = { 38 | isa = PBXFrameworksBuildPhase; 39 | buildActionMask = 2147483647; 40 | files = ( 41 | ); 42 | runOnlyForDeploymentPostprocessing = 0; 43 | }; 44 | /* End PBXFrameworksBuildPhase section */ 45 | 46 | /* Begin PBXGroup section */ 47 | 6BEE09E119870A1800D73B41 = { 48 | isa = PBXGroup; 49 | children = ( 50 | 6BEE09EC19870A1800D73B41 /* BKHitSlop */, 51 | 6BEE09EB19870A1800D73B41 /* Products */, 52 | ); 53 | sourceTree = ""; 54 | }; 55 | 6BEE09EB19870A1800D73B41 /* Products */ = { 56 | isa = PBXGroup; 57 | children = ( 58 | 6BEE09EA19870A1800D73B41 /* libBKHitSlop.a */, 59 | ); 60 | name = Products; 61 | sourceTree = ""; 62 | }; 63 | 6BEE09EC19870A1800D73B41 /* BKHitSlop */ = { 64 | isa = PBXGroup; 65 | children = ( 66 | 6BEE09ED19870A1800D73B41 /* BKHitSlop.h */, 67 | 6BEE0A0419870AC000D73B41 /* UIView+BKHitSlop.h */, 68 | 6BEE0A0519870AC000D73B41 /* UIView+BKHitSlop.m */, 69 | ); 70 | path = BKHitSlop; 71 | sourceTree = ""; 72 | }; 73 | /* End PBXGroup section */ 74 | 75 | /* Begin PBXNativeTarget section */ 76 | 6BEE09E919870A1800D73B41 /* BKHitSlop */ = { 77 | isa = PBXNativeTarget; 78 | buildConfigurationList = 6BEE09FE19870A1900D73B41 /* Build configuration list for PBXNativeTarget "BKHitSlop" */; 79 | buildPhases = ( 80 | 6BEE09E619870A1800D73B41 /* Sources */, 81 | 6BEE09E719870A1800D73B41 /* Frameworks */, 82 | 6BEE09E819870A1800D73B41 /* CopyFiles */, 83 | ); 84 | buildRules = ( 85 | ); 86 | dependencies = ( 87 | ); 88 | name = BKHitSlop; 89 | productName = BKHitSlop; 90 | productReference = 6BEE09EA19870A1800D73B41 /* libBKHitSlop.a */; 91 | productType = "com.apple.product-type.library.static"; 92 | }; 93 | /* End PBXNativeTarget section */ 94 | 95 | /* Begin PBXProject section */ 96 | 6BEE09E219870A1800D73B41 /* Project object */ = { 97 | isa = PBXProject; 98 | attributes = { 99 | LastUpgradeCheck = 0600; 100 | ORGANIZATIONNAME = "650 Industries, Inc."; 101 | TargetAttributes = { 102 | 6BEE09E919870A1800D73B41 = { 103 | CreatedOnToolsVersion = 6.0; 104 | }; 105 | }; 106 | }; 107 | buildConfigurationList = 6BEE09E519870A1800D73B41 /* Build configuration list for PBXProject "BKHitSlop" */; 108 | compatibilityVersion = "Xcode 3.2"; 109 | developmentRegion = English; 110 | hasScannedForEncodings = 0; 111 | knownRegions = ( 112 | en, 113 | ); 114 | mainGroup = 6BEE09E119870A1800D73B41; 115 | productRefGroup = 6BEE09EB19870A1800D73B41 /* Products */; 116 | projectDirPath = ""; 117 | projectRoot = ""; 118 | targets = ( 119 | 6BEE09E919870A1800D73B41 /* BKHitSlop */, 120 | ); 121 | }; 122 | /* End PBXProject section */ 123 | 124 | /* Begin PBXSourcesBuildPhase section */ 125 | 6BEE09E619870A1800D73B41 /* Sources */ = { 126 | isa = PBXSourcesBuildPhase; 127 | buildActionMask = 2147483647; 128 | files = ( 129 | 6BEE0A0619870AC000D73B41 /* UIView+BKHitSlop.m in Sources */, 130 | ); 131 | runOnlyForDeploymentPostprocessing = 0; 132 | }; 133 | /* End PBXSourcesBuildPhase section */ 134 | 135 | /* Begin XCBuildConfiguration section */ 136 | 6BEE09FC19870A1900D73B41 /* Debug */ = { 137 | isa = XCBuildConfiguration; 138 | buildSettings = { 139 | ALWAYS_SEARCH_USER_PATHS = NO; 140 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 141 | CLANG_CXX_LIBRARY = "libc++"; 142 | CLANG_ENABLE_MODULES = YES; 143 | CLANG_ENABLE_OBJC_ARC = YES; 144 | CLANG_WARN_BOOL_CONVERSION = YES; 145 | CLANG_WARN_CONSTANT_CONVERSION = YES; 146 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 147 | CLANG_WARN_EMPTY_BODY = YES; 148 | CLANG_WARN_ENUM_CONVERSION = YES; 149 | CLANG_WARN_INT_CONVERSION = YES; 150 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 151 | CLANG_WARN_UNREACHABLE_CODE = YES; 152 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 153 | COPY_PHASE_STRIP = NO; 154 | ENABLE_STRICT_OBJC_MSGSEND = YES; 155 | GCC_C_LANGUAGE_STANDARD = gnu99; 156 | GCC_DYNAMIC_NO_PIC = NO; 157 | GCC_OPTIMIZATION_LEVEL = 0; 158 | GCC_PREPROCESSOR_DEFINITIONS = ( 159 | "DEBUG=1", 160 | "$(inherited)", 161 | ); 162 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 163 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 164 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 165 | GCC_WARN_UNDECLARED_SELECTOR = YES; 166 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 167 | GCC_WARN_UNUSED_FUNCTION = YES; 168 | GCC_WARN_UNUSED_VARIABLE = YES; 169 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 170 | MTL_ENABLE_DEBUG_INFO = YES; 171 | ONLY_ACTIVE_ARCH = YES; 172 | SDKROOT = iphoneos; 173 | }; 174 | name = Debug; 175 | }; 176 | 6BEE09FD19870A1900D73B41 /* Release */ = { 177 | isa = XCBuildConfiguration; 178 | buildSettings = { 179 | ALWAYS_SEARCH_USER_PATHS = NO; 180 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 181 | CLANG_CXX_LIBRARY = "libc++"; 182 | CLANG_ENABLE_MODULES = YES; 183 | CLANG_ENABLE_OBJC_ARC = YES; 184 | CLANG_WARN_BOOL_CONVERSION = YES; 185 | CLANG_WARN_CONSTANT_CONVERSION = YES; 186 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 187 | CLANG_WARN_EMPTY_BODY = YES; 188 | CLANG_WARN_ENUM_CONVERSION = YES; 189 | CLANG_WARN_INT_CONVERSION = YES; 190 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 191 | CLANG_WARN_UNREACHABLE_CODE = YES; 192 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 193 | COPY_PHASE_STRIP = YES; 194 | ENABLE_NS_ASSERTIONS = NO; 195 | ENABLE_STRICT_OBJC_MSGSEND = YES; 196 | GCC_C_LANGUAGE_STANDARD = gnu99; 197 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 198 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 199 | GCC_WARN_UNDECLARED_SELECTOR = YES; 200 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 201 | GCC_WARN_UNUSED_FUNCTION = YES; 202 | GCC_WARN_UNUSED_VARIABLE = YES; 203 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 204 | MTL_ENABLE_DEBUG_INFO = NO; 205 | SDKROOT = iphoneos; 206 | VALIDATE_PRODUCT = YES; 207 | }; 208 | name = Release; 209 | }; 210 | 6BEE09FF19870A1900D73B41 /* Debug */ = { 211 | isa = XCBuildConfiguration; 212 | buildSettings = { 213 | OTHER_LDFLAGS = "-ObjC"; 214 | PRODUCT_NAME = "$(TARGET_NAME)"; 215 | SKIP_INSTALL = YES; 216 | }; 217 | name = Debug; 218 | }; 219 | 6BEE0A0019870A1900D73B41 /* Release */ = { 220 | isa = XCBuildConfiguration; 221 | buildSettings = { 222 | OTHER_LDFLAGS = "-ObjC"; 223 | PRODUCT_NAME = "$(TARGET_NAME)"; 224 | SKIP_INSTALL = YES; 225 | }; 226 | name = Release; 227 | }; 228 | /* End XCBuildConfiguration section */ 229 | 230 | /* Begin XCConfigurationList section */ 231 | 6BEE09E519870A1800D73B41 /* Build configuration list for PBXProject "BKHitSlop" */ = { 232 | isa = XCConfigurationList; 233 | buildConfigurations = ( 234 | 6BEE09FC19870A1900D73B41 /* Debug */, 235 | 6BEE09FD19870A1900D73B41 /* Release */, 236 | ); 237 | defaultConfigurationIsVisible = 0; 238 | defaultConfigurationName = Release; 239 | }; 240 | 6BEE09FE19870A1900D73B41 /* Build configuration list for PBXNativeTarget "BKHitSlop" */ = { 241 | isa = XCConfigurationList; 242 | buildConfigurations = ( 243 | 6BEE09FF19870A1900D73B41 /* Debug */, 244 | 6BEE0A0019870A1900D73B41 /* Release */, 245 | ); 246 | defaultConfigurationIsVisible = 0; 247 | }; 248 | /* End XCConfigurationList section */ 249 | }; 250 | rootObject = 6BEE09E219870A1800D73B41 /* Project object */; 251 | } 252 | --------------------------------------------------------------------------------