Skip to content

Instantly share code, notes, and snippets.

@dastels
Created January 24, 2016 05:35
Show Gist options
  • Save dastels/0dca26644f9bf36aebc1 to your computer and use it in GitHub Desktop.
Save dastels/0dca26644f9bf36aebc1 to your computer and use it in GitHub Desktop.
def loadView
@layout = PackageSelectLayout.new
@layout.controller = self
self.view = @layout.view
@collection = @layout.collection
lpgr = UILongPressGestureRecognizer.alloc.initWithTarget(@layout, action: 'handleLongPress:')
lpgr.delegate = @layout
lpgr.delaysTouchesBegan = true
@collection.addGestureRecognizer(lpgr)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment