Skip to content

Commit

Permalink
Updated Function Call syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jobinsjohn committed Jun 23, 2016
1 parent 0fe08b7 commit 535a86e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions UIConcept/ASBubbleDrag/BubbleCollectionCell.xib
@@ -1,17 +1,17 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="9531" systemVersion="15D21" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES">
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="10117" systemVersion="15F34" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES">
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="9529"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="10085"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<view contentMode="scaleToFill" id="iN0-l3-epB" customClass="BubbleCollectionCell" customModule="MyDPP" customModuleProvider="target">
<view contentMode="scaleToFill" id="iN0-l3-epB" customClass="BubbleCollectionCell" customModule="UIConcept" customModuleProvider="target">
<rect key="frame" x="0.0" y="0.0" width="100" height="100"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="Sfj-9b-55f" customClass="roundImageView" customModule="MyDPP" customModuleProvider="target">
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="Sfj-9b-55f" customClass="roundImageView" customModule="UIConcept" customModuleProvider="target">
<rect key="frame" x="0.0" y="0.0" width="100" height="100"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
<userDefinedRuntimeAttributes>
Expand Down
2 changes: 1 addition & 1 deletion UIConcept/ASBubbleDrag/BubbleDragView.swift
Expand Up @@ -31,7 +31,7 @@ class BubbleDragView: UIView, UICollectionViewDataSource {
self.collectionView.dataSource = self

//add gesture recognizers
let dragGesture = UIPanGestureRecognizer(target: self, action: "handleDrag:")
let dragGesture = UIPanGestureRecognizer(target: self, action: #selector(BubbleDragView.handleDrag(_:)))
dragGesture.maximumNumberOfTouches = 1
self.addGestureRecognizer(dragGesture)

Expand Down
4 changes: 2 additions & 2 deletions UIConcept/ASBubbleDrag/BubbleDragView.xib
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="9532" systemVersion="15D21" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES">
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="10117" systemVersion="15F34" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES">
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="9530"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="10085"/>
<capability name="Aspect ratio constraints" minToolsVersion="5.1"/>
</dependencies>
<objects>
Expand Down

0 comments on commit 535a86e

Please sign in to comment.