Skip to content

Commit c18a830

Browse files
authored
Updated Sample Apps (#408)
- Fixed some issues in the sample apps
1 parent 253d85d commit c18a830

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Examples/Sample-Swift-UISceneDelegate/Sample-Swift-UISceneDelegate/Main.storyboard

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="18122" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="vXZ-lx-hvc">
2+
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="21225" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="vXZ-lx-hvc">
33
<device id="retina6_1" orientation="portrait" appearance="light"/>
44
<dependencies>
55
<deployment identifier="iOS"/>
6-
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="18093"/>
6+
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="21207"/>
77
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
88
</dependencies>
99
<scenes>
@@ -72,7 +72,7 @@
7272
</mask>
7373
</variation>
7474
<connections>
75-
<action selector="openMessengerTapped:" destination="vXZ-lx-hvc" eventType="touchUpInside" id="IQb-CZ-THN"/>
75+
<action selector="openMessenger:" destination="vXZ-lx-hvc" eventType="touchUpInside" id="xjm-9e-eTP"/>
7676
</connections>
7777
</button>
7878
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="ogC-ME-cPV">

Examples/Sample-Swift-UISceneDelegate/Sample-Swift-UISceneDelegate/ViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class ViewController: UIViewController {
5959
}
6060

6161
@IBAction func openArticle(_ sender: Any) {
62-
Intercom.presentArticle(<#ARTICLE_ID#>)
62+
Intercom.presentArticle("<#ARTICLE_ID#>")
6363
}
6464

6565
@IBAction func logout(_ sender: Any) {

Examples/Sample-SwiftUI/iOS/Views/LoggedInView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ struct LoggedInView: View {
3838
}
3939

4040
func openArticle() {
41-
Intercom.presentArticle(<#ARTICLE_ID#>)
41+
Intercom.presentArticle("<#ARTICLE_ID#>")
4242
}
4343

4444
func logoutOfIntercom() {

0 commit comments

Comments
 (0)