Commit e9be7a5f by SunARcTech2

fix audio

parent a6057915
......@@ -121,12 +121,12 @@
shouldBeEnabled = "Yes"
ignoreCount = "0"
continueAfterRunningActions = "No"
filePath = "Bhagyashree/Sunarc/Controller/Me/MyCompletedOrdersViewController.swift"
timestampString = "560770072.590113"
filePath = "Bhagyashree/Sunarc/Controller/Me/MyAllServiceOrderViewController.swift"
timestampString = "561031158.873988"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "121"
endingLineNumber = "121"
startingLineNumber = "127"
endingLineNumber = "127"
landmarkName = "tableView(_:didSelectRowAt:)"
landmarkType = "7">
</BreakpointContent>
......@@ -137,13 +137,13 @@
shouldBeEnabled = "Yes"
ignoreCount = "0"
continueAfterRunningActions = "No"
filePath = "Bhagyashree/AppDelegate.swift"
timestampString = "560951661.375753"
filePath = "Bhagyashree/Sunarc/Controller/Me/MyAllServiceOrderViewController.swift"
timestampString = "561031158.874055"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "30"
endingLineNumber = "30"
landmarkName = "messaging(_:didReceiveRegistrationToken:)"
startingLineNumber = "124"
endingLineNumber = "124"
landmarkName = "tableView(_:didSelectRowAt:)"
landmarkType = "7">
</BreakpointContent>
</BreakpointProxy>
......
......@@ -27,8 +27,6 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterD
func messaging(_ messaging: Messaging, didReceiveRegistrationToken fcmToken: String) {
// UIPasteboard.general.string = fcmToken
print(fcmToken)
deviceTokenData = fcmToken
let defaults = UserDefaults.standard;
defaults.set(fcmToken, forKey: "deviceToken");
......
{
"images" : [
{
"idiom" : "universal",
"filename" : "pause.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
\ No newline at end of file
......@@ -312,6 +312,7 @@ class MasterReplyCell: UITableViewCell {
@IBOutlet weak var img2Height: NSLayoutConstraint!
@IBOutlet weak var img1Height: NSLayoutConstraint!
var playingAudioAtIndex = 1000
override func awakeFromNib() {
super.awakeFromNib()
......@@ -402,6 +403,7 @@ class MasterReplyCell: UITableViewCell {
if let postInFullScreenView = Utils.viewFrom("PostInFullScreenView") as? PostInFullScreenView {
postInFullScreenView.setNeedsLayout()
postInFullScreenView.layoutIfNeeded()
postInFullScreenView.lbContent.text = ""
galleryPreview.overlayView = postInFullScreenView
}
......@@ -414,7 +416,7 @@ class MasterReplyCell: UITableViewCell {
}
extension MasterReplyCell: UITableViewDelegate, UITableViewDataSource {
extension MasterReplyCell: UITableViewDelegate, UITableViewDataSource, ResultAudioCellDelegate {
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return arrayOfAudios.count
......@@ -423,6 +425,16 @@ extension MasterReplyCell: UITableViewDelegate, UITableViewDataSource {
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let audioCell = tableView.dequeueReusableCell(withIdentifier: "ResultAudioCell", for: indexPath) as! ResultAudioCell
audioCell.audioPath = arrayOfAudios[indexPath.row]
audioCell.cellIndex = indexPath.row
audioCell.delegate = self
audioCell.btnPlay.tag = 0
if indexPath.row == playingAudioAtIndex {
audioCell.btnPlay.setBackgroundImage(UIImage(named: "pause"), for: .normal)
audioCell.btnPlay.tag = 8080
} else {
audioCell.btnPlay.setBackgroundImage(UIImage(named: "play"), for: .normal)
}
return audioCell
}
......@@ -430,18 +442,39 @@ extension MasterReplyCell: UITableViewDelegate, UITableViewDataSource {
return 74.0
}
func playingAudioAtIndex(index: Int) {
playingAudioAtIndex = index
self.tblAudio.reloadData()
}
}
protocol ResultAudioCellDelegate {
func playingAudioAtIndex(index: Int)
}
class ResultAudioCell: UITableViewCell {
@IBOutlet var btnPlay: UIButton!
var audioPath: String?
var delegate: ResultAudioCellDelegate?
var cellIndex = 0
@IBAction func play() {
print("tag = \(btnPlay.tag)")
if btnPlay.tag == 8080 {
Audio.pause()
btnPlay.tag = 0
delegate?.playingAudioAtIndex(index: 1000)
return
}
if let audioPath = audioPath {
Audio.playAudio(audioPath: audioPath, success: {
self.delegate?.playingAudioAtIndex(index: cellIndex)
}) { (errorMesssage) in
self.viewController()?.view.showToast(errorMesssage, position: .bottom, popTime: 2.0, dismissOnTap: false)
}
......
......@@ -107,6 +107,7 @@ class FloorPlanFengshuiViewController: UIViewController {
if let postInFullScreenView = Utils.viewFrom("PostInFullScreenView") as? PostInFullScreenView {
postInFullScreenView.setNeedsLayout()
postInFullScreenView.layoutIfNeeded()
postInFullScreenView.lbContent.text = ""
galleryPreview.overlayView = postInFullScreenView
}
......
......@@ -8,6 +8,8 @@
import UIKit
import Kingfisher
import INSPhotoGallery
class FormViewController: UIViewController {
......@@ -100,6 +102,12 @@ class CustomOptionImageCell: UITableViewCell {
@IBOutlet var lblTitle: UILabel!
@IBOutlet var imgImageView: UIImageView!
override func awakeFromNib() {
super.awakeFromNib()
let tap = UITapGestureRecognizer(target: self, action: #selector(self.imageTapped(gesture:)))
imgImageView.addGestureRecognizer(tap)
}
var customOption: CustomOption? {
didSet {
......@@ -108,10 +116,38 @@ class CustomOptionImageCell: UITableViewCell {
if let image = customOption.value {
let url = URL(string: image)
self.imgImageView.kf.setImage(with: url, placeholder: UIImage(named: "placeholder"), options: [.transition(ImageTransition.fade(1)), .scaleFactor(1.0)], progressBlock: nil, completionHandler: nil)
self.imgImageView.kf.setImage(with: url, placeholder: nil, options: [.transition(ImageTransition.fade(1)), .scaleFactor(1.0)], progressBlock: nil, completionHandler: nil)
}
}
}
}
@objc func imageTapped(gesture: UITapGestureRecognizer) {
if let image = imgImageView.image {
var photos = [INSPhoto]()
let photo = INSPhoto(image: image, thumbnailImage: nil)
photos.append(photo)
let galleryPreview = INSPhotosViewController(photos: photos, initialPhoto: nil, referenceView: self.viewController()?.navigationController?.view)
if let postInFullScreenView = Utils.viewFrom("PostInFullScreenView") as? PostInFullScreenView {
postInFullScreenView.setNeedsLayout()
postInFullScreenView.layoutIfNeeded()
postInFullScreenView.lbContent.text = ""
galleryPreview.overlayView = postInFullScreenView
}
galleryPreview.referenceViewForPhotoWhenDismissingHandler = { photo in
return nil
}
self.viewController()?.present(galleryPreview, animated: true, completion: {
})
}
}
}
......@@ -166,6 +166,7 @@ extension HomePageViewController: UITableViewDelegate, UITableViewDataSource {
if let orderId = order.orderId {
chatViewController.orderId = orderId
chatViewController.customerId = order.customerDetail.customerId!
chatViewController.customerProfileImage = dashboard.orders[indexPath.row-1].customerDetail.profileImage
self.navigationController?.pushViewController(chatViewController, animated: true)
}
} else {
......@@ -173,27 +174,13 @@ extension HomePageViewController: UITableViewDelegate, UITableViewDataSource {
enquiryDetailsViewController.incrementId = order.incrementId!
enquiryDetailsViewController.orderId = order.orderId!
enquiryDetailsViewController.customerName = dashboard.orders[indexPath.row-1].customerDetail.name
enquiryDetailsViewController.customerName = dashboard.orders[indexPath.row-1].customerDetail.profileImage
enquiryDetailsViewController.customerImage = dashboard.orders[indexPath.row-1].customerDetail.profileImage
self.navigationController?.pushViewController(enquiryDetailsViewController, animated: true)
}
} else if order.products.first?.serviceType == .FORM{
if order.status == .COMPLETE {
let appointmentdetails = Utils.viewController(storyboardName: "Appointment", ofType: ServiceDetailViewController.self)
appointmentdetails.orderStatus = dashboard.orders[indexPath.row-1].status
appointmentdetails.incrementId = order.incrementId
appointmentdetails.orderId = order.orderId
self.navigationController?.pushViewController(appointmentdetails, animated: true)
} else {
let formVC = Utils.viewController(storyboardName: "Forms", ofType: FormViewController.self)
formVC.incrementId = order.incrementId
formVC.orderId = order.orderId
self.navigationController?.pushViewController(formVC, animated: true)
}
// if order.status == .COMPLETE {
// let appointmentdetails = Utils.viewController(storyboardName: "Appointment", ofType: ServiceDetailViewController.self)
// appointmentdetails.orderStatus = dashboard.orders[indexPath.row-1].status
......@@ -201,10 +188,24 @@ extension HomePageViewController: UITableViewDelegate, UITableViewDataSource {
// appointmentdetails.orderId = order.orderId
// self.navigationController?.pushViewController(appointmentdetails, animated: true)
// } else {
// if let form = Form.VC(with: order.incrementId!, orderId: order.orderId!, categoryType: order.products.first!.categoryType){
// self.navigationController?.pushViewController(form, animated: true)
// }
// let formVC = Utils.viewController(storyboardName: "Forms", ofType: FormViewController.self)
// formVC.incrementId = order.incrementId
// formVC.orderId = order.orderId
// self.navigationController?.pushViewController(formVC, animated: true)
// }
if order.status == .COMPLETE {
let appointmentdetails = Utils.viewController(storyboardName: "Appointment", ofType: ServiceDetailViewController.self)
appointmentdetails.orderStatus = dashboard.orders[indexPath.row-1].status
appointmentdetails.incrementId = order.incrementId
appointmentdetails.orderId = order.orderId
self.navigationController?.pushViewController(appointmentdetails, animated: true)
} else {
if let form = Form.VC(with: order.incrementId!, orderId: order.orderId!, categoryType: order.products.first!.categoryType){
self.navigationController?.pushViewController(form, animated: true)
}
}
} else {
self.view.showToast("Unknown service", position: .bottom, popTime: 2.0, dismissOnTap: false)
......
......@@ -285,10 +285,10 @@ extension OnlineEnquiryViewController: UITextViewDelegate {
func textViewDidChange(_ textView: UITextView) {
if textView.text.count == 0 {
commentViewHeight.constant = 56
// commentViewHeight.constant = 56
lblPlaceHolder.isHidden = false
} else {
commentViewHeight.constant = txtComment.contentSize.height + (56-28) // 28 is height of txtComment
// commentViewHeight.constant = txtComment.contentSize.height + (56-28) // 28 is height of txtComment
lblPlaceHolder.isHidden = true
}
}
......@@ -346,10 +346,10 @@ class OnlineEnquiryMasterAudioCell: UITableViewCell {
@IBOutlet var btnPlay: UIButton!
var audioPath: String?
@IBOutlet var imgMaster: UIImageView!
@IBOutlet var imgMaster: UIImageView!
@IBAction func play() {
if let audioPath = audioPath {
Audio.playAudio(audioPath: audioPath, success: {
......@@ -383,7 +383,7 @@ class OnlineEnquiryCustomerAudioCell: UITableViewCell {
@IBOutlet var imgCostomer: UIImageView!
@IBAction func play() {
if let audioPath = audioPath {
Audio.playAudio(audioPath: audioPath, success: {
......
......@@ -180,16 +180,18 @@ extension MyAllServiceOrderViewController: UITableViewDelegate, UITableViewDataS
appointmentdetails.orderId = selectedService.orderId
self.navigationController?.pushViewController(appointmentdetails, animated: true)
} else {
let formVC = Utils.viewController(storyboardName: "Forms", ofType: FormViewController.self)
formVC.incrementId = selectedService.incrementId
formVC.orderId = selectedService.orderId
self.navigationController?.pushViewController(formVC, animated: true)
// let formVC = Utils.viewController(storyboardName: "Forms", ofType: FormViewController.self)
// formVC.incrementId = selectedService.incrementId
// formVC.orderId = selectedService.orderId
// self.navigationController?.pushViewController(formVC, animated: true)
if let form = Form.VC(with: selectedService.incrementId!, orderId: selectedService.orderId!, categoryType: selectedService.categoryType) {
self.navigationController?.pushViewController(form, animated: true)
}
}
// if let form = Form.VC(with: selectedService.incrementId!, orderId: selectedService.orderId!, categoryType: selectedService.categoryType) {
// self.navigationController?.pushViewController(form, animated: true)
// }
} else {
self.view.showToast("Unknown service", position: .bottom, popTime: 2.0, dismissOnTap: false)
}
......
......@@ -128,9 +128,14 @@ extension MyCompletedOrdersViewController: UITableViewDelegate, UITableViewDataS
} else if selectedService.serviceType == .FORM{
if let form = Form.VC(with: selectedService.incrementId!, orderId: selectedService.orderId!, categoryType: selectedService.categoryType) {
self.navigationController?.pushViewController(form, animated: true)
}
let appointmentdetails = Utils.viewController(storyboardName: "Appointment", ofType: ServiceDetailViewController.self)
appointmentdetails.incrementId = selectedService.incrementId
appointmentdetails.orderId = selectedService.orderId
self.navigationController?.pushViewController(appointmentdetails, animated: true)
// if let form = Form.VC(with: selectedService.incrementId!, orderId: selectedService.orderId!, categoryType: selectedService.categoryType) {
// self.navigationController?.pushViewController(form, animated: true)
// }
} else {
self.view.showToast("Unknown service", position: .bottom, popTime: 2.0, dismissOnTap: false)
}
......
......@@ -58,6 +58,7 @@ class Service {
if let productsInfo = json["productNames"] as? [[String: Any]] {
if let productInfo = productsInfo.first {
self.productName = productInfo["name"] as? String
self.productId = productInfo["productId"] as? String
self.customerId = productInfo["customer_id"] as? String
......
......@@ -553,7 +553,7 @@
<constraints>
<constraint firstAttribute="width" secondItem="yGv-zf-IaV" secondAttribute="height" multiplier="1:1" id="zhg-EN-iQN"/>
</constraints>
<state key="normal" image="play"/>
<state key="normal" backgroundImage="play"/>
<connections>
<action selector="play" destination="r0F-XL-bfW" eventType="touchUpInside" id="6BG-4Q-rEd"/>
</connections>
......
......@@ -28,6 +28,16 @@
<constraint firstAttribute="width" constant="20" id="rZq-aB-M5Z"/>
</constraints>
</imageView>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="zea-ZP-79R">
<rect key="frame" x="40" y="35" width="295" height="21"/>
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstAttribute="height" constant="21" id="mim-Wo-mB6"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<color key="textColor" red="0.023529411760000001" green="0.41960784309999999" blue="0.64313725489999995" alpha="1" colorSpace="calibratedRGB"/>
<nil key="highlightedColor"/>
</label>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="u4j-hn-0zQ">
<rect key="frame" x="0.0" y="0.0" width="69" height="64"/>
<constraints>
......@@ -38,27 +48,18 @@
<action selector="back" destination="yVT-eK-TPJ" eventType="touchUpInside" id="vli-L5-DiF"/>
</connections>
</button>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="zea-ZP-79R">
<rect key="frame" x="40" y="35" width="295" height="21"/>
<constraints>
<constraint firstAttribute="height" constant="21" id="0oh-Ka-Yv4"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
</subviews>
<color key="backgroundColor" red="0.7843137255" green="0.92156862750000001" blue="0.99607843139999996" alpha="1" colorSpace="calibratedRGB"/>
<constraints>
<constraint firstItem="u4j-hn-0zQ" firstAttribute="leading" secondItem="Agr-j8-uxE" secondAttribute="leading" id="0nI-5S-D2O"/>
<constraint firstAttribute="trailing" secondItem="zea-ZP-79R" secondAttribute="trailing" constant="40" id="CK6-Cd-k7g"/>
<constraint firstItem="zea-ZP-79R" firstAttribute="top" secondItem="KL2-fU-EaS" secondAttribute="bottom" constant="-21" id="R4V-Rd-hzR"/>
<constraint firstAttribute="bottom" secondItem="zea-ZP-79R" secondAttribute="bottom" constant="8" id="Fdp-Ep-BWZ"/>
<constraint firstItem="zea-ZP-79R" firstAttribute="leading" secondItem="KL2-fU-EaS" secondAttribute="trailing" constant="13" id="T5q-hH-V8g"/>
<constraint firstItem="u4j-hn-0zQ" firstAttribute="top" secondItem="Agr-j8-uxE" secondAttribute="top" id="TtW-6R-usG"/>
<constraint firstAttribute="bottom" secondItem="KL2-fU-EaS" secondAttribute="bottom" constant="8" id="Up3-8I-hHN"/>
<constraint firstAttribute="bottom" secondItem="u4j-hn-0zQ" secondAttribute="bottom" id="Xi8-bJ-D2t"/>
<constraint firstAttribute="trailing" secondItem="zea-ZP-79R" secondAttribute="trailing" constant="40" id="e8q-vp-sKw"/>
<constraint firstItem="KL2-fU-EaS" firstAttribute="leading" secondItem="Agr-j8-uxE" secondAttribute="leading" constant="7" id="mfH-eg-nXt"/>
<constraint firstAttribute="height" constant="64" id="nlY-aR-9Kz"/>
<constraint firstAttribute="bottom" secondItem="zea-ZP-79R" secondAttribute="bottom" constant="8" id="rFv-3b-UaJ"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="number" keyPath="shadowOpacity">
......@@ -149,8 +150,9 @@
<constraint firstAttribute="height" constant="1" id="prn-5n-udi"/>
</constraints>
</view>
<imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="jPD-VZ-2Tx">
<imageView contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="jPD-VZ-2Tx">
<rect key="frame" x="9" y="45" width="356" height="178"/>
<gestureRecognizers/>
</imageView>
</subviews>
<constraints>
......
......@@ -1325,58 +1325,58 @@
<point key="canvasLocation" x="3788" y="-294.0886699507389"/>
</scene>
<!--Online Enquiry View Controller-->
<scene sceneID="tRj-TE-ita">
<scene sceneID="cB5-bV-9xN">
<objects>
<viewController storyboardIdentifier="OnlineEnquiryViewController" hidesBottomBarWhenPushed="YES" useStoryboardIdentifierAsRestorationIdentifier="YES" id="Psj-7u-2hR" customClass="OnlineEnquiryViewController" customModule="Bhagyashree" customModuleProvider="target" sceneMemberID="viewController">
<view key="view" contentMode="scaleToFill" id="tPh-oM-m5x">
<viewController storyboardIdentifier="OnlineEnquiryViewController" hidesBottomBarWhenPushed="YES" useStoryboardIdentifierAsRestorationIdentifier="YES" id="cqt-hL-ZvC" customClass="OnlineEnquiryViewController" customModule="Bhagyashree" customModuleProvider="target" sceneMemberID="viewController">
<view key="view" contentMode="scaleToFill" id="x5M-8n-Rhu">
<rect key="frame" x="0.0" y="0.0" width="375" height="812"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ZiM-5C-b7B" customClass="CardView" customModule="Bhagyashree" customModuleProvider="target">
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="8ix-nv-AtI" customClass="CardView" customModule="Bhagyashree" customModuleProvider="target">
<rect key="frame" x="0.0" y="0.0" width="375" height="64"/>
<subviews>
<label hidden="YES" opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ik3-BG-dRW">
<label hidden="YES" opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="lEc-Pj-dST">
<rect key="frame" x="0.0" y="63" width="375" height="1"/>
<color key="backgroundColor" white="0.66666666669999997" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstAttribute="height" constant="1" id="V01-aQ-cv2"/>
<constraint firstAttribute="height" constant="1" id="rFK-yG-XeI"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Customer Name" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="RX5-Vv-exD">
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Customer Name" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Per-QD-ryF">
<rect key="frame" x="99.666666666666686" y="29" width="176" height="27"/>
<constraints>
<constraint firstAttribute="width" constant="176" id="9eC-Qy-Kzm"/>
<constraint firstAttribute="height" constant="27" id="dWn-9y-Kwm"/>
<constraint firstAttribute="height" constant="27" id="366-8i-C8E"/>
<constraint firstAttribute="width" constant="176" id="KsG-rd-ZQK"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="16"/>
<color key="textColor" red="0.023529411760000001" green="0.41960784309999999" blue="0.64313725489999995" alpha="1" colorSpace="calibratedRGB"/>
<nil key="highlightedColor"/>
</label>
<view clipsSubviews="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="mid-Xd-gsS" customClass="DrawView" customModule="Bhagyashree" customModuleProvider="target">
<view clipsSubviews="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="9uQ-AP-8qg" customClass="DrawView" customModule="Bhagyashree" customModuleProvider="target">
<rect key="frame" x="283" y="30" width="84" height="26"/>
<subviews>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="V3w-i2-aFA">
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Y6n-fn-IUf">
<rect key="frame" x="0.0" y="0.0" width="84" height="26"/>
<fontDescription key="fontDescription" type="system" weight="semibold" pointSize="13"/>
<state key="normal" title="End Service">
<color key="titleColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
</state>
<connections>
<action selector="endService" destination="Psj-7u-2hR" eventType="touchUpInside" id="oDJ-kq-6EV"/>
<action selector="endService" destination="cqt-hL-ZvC" eventType="touchUpInside" id="xto-M7-S4o"/>
</connections>
</button>
</subviews>
<color key="backgroundColor" red="0.023529411760000001" green="0.41960784309999999" blue="0.64313725489999995" alpha="1" colorSpace="calibratedRGB"/>
<constraints>
<constraint firstAttribute="bottom" secondItem="V3w-i2-aFA" secondAttribute="bottom" id="3F6-mV-FBs"/>
<constraint firstItem="V3w-i2-aFA" firstAttribute="top" secondItem="mid-Xd-gsS" secondAttribute="top" id="7cF-yo-zmx"/>
<constraint firstAttribute="width" constant="84" id="9QQ-D4-M7g"/>
<constraint firstAttribute="height" constant="26" id="9te-NC-596"/>
<constraint firstItem="V3w-i2-aFA" firstAttribute="leading" secondItem="mid-Xd-gsS" secondAttribute="leading" id="U4S-cz-cF2"/>
<constraint firstAttribute="trailing" secondItem="V3w-i2-aFA" secondAttribute="trailing" id="dC2-KB-fSu"/>
<constraint firstItem="Y6n-fn-IUf" firstAttribute="top" secondItem="9uQ-AP-8qg" secondAttribute="top" id="2Yb-Ii-yr3"/>
<constraint firstAttribute="bottom" secondItem="Y6n-fn-IUf" secondAttribute="bottom" id="CR8-fH-Y5L"/>
<constraint firstAttribute="trailing" secondItem="Y6n-fn-IUf" secondAttribute="trailing" id="dnT-9J-cjH"/>
<constraint firstAttribute="height" constant="26" id="f00-U8-S2Q"/>
<constraint firstItem="Y6n-fn-IUf" firstAttribute="leading" secondItem="9uQ-AP-8qg" secondAttribute="leading" id="pFi-ki-mw7"/>
<constraint firstAttribute="width" constant="84" id="raV-dv-eiU"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
......@@ -1384,38 +1384,38 @@
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</view>
<imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="back" translatesAutoresizingMaskIntoConstraints="NO" id="WaH-yU-Qoo">
<imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="back" translatesAutoresizingMaskIntoConstraints="NO" id="kB8-ZC-uge">
<rect key="frame" x="7" y="34" width="20" height="22"/>
<constraints>
<constraint firstAttribute="width" constant="20" id="IoG-of-MdS"/>
<constraint firstAttribute="height" constant="22" id="gGX-1L-gaU"/>
<constraint firstAttribute="height" constant="22" id="O1k-UU-hAj"/>
<constraint firstAttribute="width" constant="20" id="ynz-iZ-or4"/>
</constraints>
</imageView>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="kkZ-b8-07H">
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Qah-rS-EZl">
<rect key="frame" x="0.0" y="0.0" width="54" height="64"/>
<constraints>
<constraint firstAttribute="width" constant="54" id="pi4-Pp-SIo"/>
<constraint firstAttribute="width" constant="54" id="FAU-DA-xM6"/>
</constraints>
<connections>
<action selector="back" destination="Psj-7u-2hR" eventType="touchUpInside" id="7nI-ns-WVl"/>
<action selector="back" destination="cqt-hL-ZvC" eventType="touchUpInside" id="WjP-8M-WBf"/>
</connections>
</button>
</subviews>
<color key="backgroundColor" red="0.89019607840000003" green="0.97254901959999995" blue="0.99607843139999996" alpha="1" colorSpace="calibratedRGB"/>
<constraints>
<constraint firstAttribute="bottom" secondItem="ik3-BG-dRW" secondAttribute="bottom" id="1AK-i4-Ydl"/>
<constraint firstItem="ik3-BG-dRW" firstAttribute="top" secondItem="mid-Xd-gsS" secondAttribute="bottom" constant="7" id="8RN-Tb-mb3"/>
<constraint firstAttribute="trailing" secondItem="ik3-BG-dRW" secondAttribute="trailing" id="JDi-BD-cpq"/>
<constraint firstItem="kkZ-b8-07H" firstAttribute="top" secondItem="ZiM-5C-b7B" secondAttribute="top" id="K64-dL-5GJ"/>
<constraint firstItem="RX5-Vv-exD" firstAttribute="centerX" secondItem="ZiM-5C-b7B" secondAttribute="centerX" id="NZ6-tI-PSF"/>
<constraint firstItem="WaH-yU-Qoo" firstAttribute="leading" secondItem="ZiM-5C-b7B" secondAttribute="leading" constant="7" id="Xll-23-8C4"/>
<constraint firstItem="kkZ-b8-07H" firstAttribute="leading" secondItem="ZiM-5C-b7B" secondAttribute="leading" id="ecT-Nk-Czp"/>
<constraint firstAttribute="bottom" secondItem="kkZ-b8-07H" secondAttribute="bottom" id="jhQ-TR-7zn"/>
<constraint firstItem="ik3-BG-dRW" firstAttribute="leading" secondItem="ZiM-5C-b7B" secondAttribute="leading" id="n9g-WR-wF8"/>
<constraint firstAttribute="trailing" secondItem="mid-Xd-gsS" secondAttribute="trailing" constant="8" id="tAL-4J-TyF"/>
<constraint firstItem="ik3-BG-dRW" firstAttribute="top" secondItem="RX5-Vv-exD" secondAttribute="bottom" constant="7" id="x54-jn-ANv"/>
<constraint firstAttribute="height" constant="64" id="xHw-4h-FY6"/>
<constraint firstAttribute="bottom" secondItem="WaH-yU-Qoo" secondAttribute="bottom" constant="8" id="zm9-Xi-ddl"/>
<constraint firstAttribute="bottom" secondItem="kB8-ZC-uge" secondAttribute="bottom" constant="8" id="4Oj-Tv-ojm"/>
<constraint firstItem="kB8-ZC-uge" firstAttribute="leading" secondItem="8ix-nv-AtI" secondAttribute="leading" constant="7" id="55T-L4-1qE"/>
<constraint firstAttribute="height" constant="64" id="5uc-Lx-0DL"/>
<constraint firstItem="Qah-rS-EZl" firstAttribute="top" secondItem="8ix-nv-AtI" secondAttribute="top" id="Ac8-xt-zb9"/>
<constraint firstItem="lEc-Pj-dST" firstAttribute="top" secondItem="Per-QD-ryF" secondAttribute="bottom" constant="7" id="Cz3-cQ-7YY"/>
<constraint firstAttribute="trailing" secondItem="9uQ-AP-8qg" secondAttribute="trailing" constant="8" id="YhU-6b-I9k"/>
<constraint firstItem="lEc-Pj-dST" firstAttribute="leading" secondItem="8ix-nv-AtI" secondAttribute="leading" id="jrg-gB-o9W"/>
<constraint firstAttribute="bottom" secondItem="Qah-rS-EZl" secondAttribute="bottom" id="k8d-0h-8Xr"/>
<constraint firstItem="Per-QD-ryF" firstAttribute="centerX" secondItem="8ix-nv-AtI" secondAttribute="centerX" id="m9D-BV-h7d"/>
<constraint firstAttribute="bottom" secondItem="lEc-Pj-dST" secondAttribute="bottom" id="nIP-hs-ARq"/>
<constraint firstAttribute="trailing" secondItem="lEc-Pj-dST" secondAttribute="trailing" id="pHt-In-6vB"/>
<constraint firstItem="lEc-Pj-dST" firstAttribute="top" secondItem="9uQ-AP-8qg" secondAttribute="bottom" constant="7" id="xb0-dW-NgA"/>
<constraint firstItem="Qah-rS-EZl" firstAttribute="leading" secondItem="8ix-nv-AtI" secondAttribute="leading" id="z5G-bR-Hda"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="number" keyPath="shadowOpacity">
......@@ -1423,30 +1423,30 @@
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
<connections>
<outlet property="viewHeight" destination="xHw-4h-FY6" id="5HJ-uE-Z8G"/>
<outlet property="viewHeight" destination="5uc-Lx-0DL" id="Urh-P8-45O"/>
</connections>
</view>
<scrollView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="JCY-Uj-8JW">
<scrollView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="NdV-5V-vkd">
<rect key="frame" x="0.0" y="64" width="375" height="714"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="vYu-JF-mFG">
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="A2A-HJ-yrg">
<rect key="frame" x="0.0" y="0.0" width="375" height="714"/>
<subviews>
<tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="none" allowsSelection="NO" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="zMo-HV-qAx">
<rect key="frame" x="0.0" y="0.0" width="375" height="670"/>
<tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="none" allowsSelection="NO" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="mxy-ht-vtG">
<rect key="frame" x="0.0" y="0.0" width="375" height="669.66666666666663"/>
<color key="backgroundColor" red="0.89019607840000003" green="0.97254901959999995" blue="0.99607843139999996" alpha="1" colorSpace="calibratedRGB"/>
<prototypes>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" indentationWidth="10" reuseIdentifier="customer" rowHeight="72" id="3Gg-AA-U8Z" customClass="OnlineEnquiryCustomerCell" customModule="Bhagyashree" customModuleProvider="target">
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" indentationWidth="10" reuseIdentifier="customer" rowHeight="72" id="bEf-5c-VwL" customClass="OnlineEnquiryCustomerCell" customModule="Bhagyashree" customModuleProvider="target">
<rect key="frame" x="0.0" y="28" width="375" height="72"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="3Gg-AA-U8Z" id="hoN-Zl-mKf">
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="bEf-5c-VwL" id="1iN-zp-2H5">
<rect key="frame" x="0.0" y="0.0" width="375" height="72"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="hoB-pU-Lja" customClass="DrawView" customModule="Bhagyashree" customModuleProvider="target">
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="H2u-0P-UIc" customClass="DrawView" customModule="Bhagyashree" customModuleProvider="target">
<rect key="frame" x="61" y="16" width="299" height="49"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="You have a new reservation service. Please be aware of it." textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="d14-Ua-TdU">
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="You have a new reservation service. Please be aware of it." textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="8ha-jN-2ND">
<rect key="frame" x="5" y="3" width="294" height="41"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<fontDescription key="fontDescription" type="system" pointSize="16"/>
......@@ -1456,10 +1456,10 @@
</subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstItem="d14-Ua-TdU" firstAttribute="top" secondItem="hoB-pU-Lja" secondAttribute="top" constant="3" id="DXg-28-VKf"/>
<constraint firstItem="d14-Ua-TdU" firstAttribute="leading" secondItem="hoB-pU-Lja" secondAttribute="leading" constant="5" id="NNq-92-jk8"/>
<constraint firstAttribute="bottom" secondItem="d14-Ua-TdU" secondAttribute="bottom" constant="5" id="Ngy-KG-0Fk"/>
<constraint firstAttribute="trailing" secondItem="d14-Ua-TdU" secondAttribute="trailing" id="w3S-6V-0R0"/>
<constraint firstAttribute="trailing" secondItem="8ha-jN-2ND" secondAttribute="trailing" id="MA3-dU-VcK"/>
<constraint firstAttribute="bottom" secondItem="8ha-jN-2ND" secondAttribute="bottom" constant="5" id="YbX-NT-s0K"/>
<constraint firstItem="8ha-jN-2ND" firstAttribute="top" secondItem="H2u-0P-UIc" secondAttribute="top" constant="3" id="bah-xA-In9"/>
<constraint firstItem="8ha-jN-2ND" firstAttribute="leading" secondItem="H2u-0P-UIc" secondAttribute="leading" constant="5" id="zBj-KN-wrW"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="color" keyPath="borderColor">
......@@ -1473,12 +1473,12 @@
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</view>
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="redraw" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="Mgn-Bk-ZnK" customClass="DrawImage" customModule="Bhagyashree" customModuleProvider="target">
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="redraw" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="D9M-mS-Hwx" customClass="DrawImage" customModule="Bhagyashree" customModuleProvider="target">
<rect key="frame" x="8" y="8" width="45" height="45"/>
<color key="backgroundColor" red="0.80000000000000004" green="0.80000000000000004" blue="0.80000000000000004" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<constraints>
<constraint firstAttribute="height" constant="45" id="RiA-cd-PZT"/>
<constraint firstAttribute="width" constant="45" id="zMg-Hs-xKP"/>
<constraint firstAttribute="width" constant="45" id="4cA-NF-Thn"/>
<constraint firstAttribute="height" constant="45" id="p1J-wv-yTc"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
......@@ -1486,11 +1486,11 @@
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</imageView>
<label hidden="YES" opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="4bM-Qy-niq">
<label hidden="YES" opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="94o-cl-llH">
<rect key="frame" x="363" y="-2" width="12" height="76"/>
<color key="backgroundColor" red="1" green="0.092869963400000005" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<constraints>
<constraint firstAttribute="width" constant="12" id="j1O-RW-a3U"/>
<constraint firstAttribute="width" constant="12" id="d84-hP-hIz"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<nil key="textColor"/>
......@@ -1499,33 +1499,33 @@
</subviews>
<color key="backgroundColor" red="0.89019607840000003" green="0.97254901959999995" blue="0.99607843139999996" alpha="1" colorSpace="calibratedRGB"/>
<constraints>
<constraint firstItem="Mgn-Bk-ZnK" firstAttribute="leading" secondItem="hoN-Zl-mKf" secondAttribute="leading" constant="8" id="8gN-Ry-wG5"/>
<constraint firstAttribute="trailing" secondItem="hoB-pU-Lja" secondAttribute="trailing" constant="15" id="A7C-LR-UqG"/>
<constraint firstAttribute="trailing" secondItem="4bM-Qy-niq" secondAttribute="trailing" id="Cfg-BT-Zk3"/>
<constraint firstItem="4bM-Qy-niq" firstAttribute="top" secondItem="hoN-Zl-mKf" secondAttribute="top" constant="-2" id="KN5-TF-oy4"/>
<constraint firstItem="hoB-pU-Lja" firstAttribute="leading" secondItem="Mgn-Bk-ZnK" secondAttribute="trailing" constant="8" id="OJM-1A-GiB"/>
<constraint firstAttribute="bottom" secondItem="4bM-Qy-niq" secondAttribute="bottom" constant="-2" id="RvS-w0-V8l"/>
<constraint firstItem="Mgn-Bk-ZnK" firstAttribute="top" secondItem="hoN-Zl-mKf" secondAttribute="top" constant="8" id="XlP-9D-D0w"/>
<constraint firstAttribute="bottom" secondItem="hoB-pU-Lja" secondAttribute="bottom" constant="7" id="eYt-ma-SMj"/>
<constraint firstItem="hoB-pU-Lja" firstAttribute="top" secondItem="hoN-Zl-mKf" secondAttribute="top" constant="16" id="pNp-5b-haF"/>
<constraint firstItem="H2u-0P-UIc" firstAttribute="leading" secondItem="D9M-mS-Hwx" secondAttribute="trailing" constant="8" id="8r2-v3-PHX"/>
<constraint firstItem="D9M-mS-Hwx" firstAttribute="top" secondItem="1iN-zp-2H5" secondAttribute="top" constant="8" id="DYL-Y5-pfM"/>
<constraint firstAttribute="bottom" secondItem="94o-cl-llH" secondAttribute="bottom" constant="-2" id="EcJ-25-cIh"/>
<constraint firstItem="D9M-mS-Hwx" firstAttribute="leading" secondItem="1iN-zp-2H5" secondAttribute="leading" constant="8" id="FoF-rf-AYy"/>
<constraint firstAttribute="bottom" secondItem="H2u-0P-UIc" secondAttribute="bottom" constant="7" id="T1P-B8-bWP"/>
<constraint firstAttribute="trailing" secondItem="H2u-0P-UIc" secondAttribute="trailing" constant="15" id="VK8-50-wSd"/>
<constraint firstItem="H2u-0P-UIc" firstAttribute="top" secondItem="1iN-zp-2H5" secondAttribute="top" constant="16" id="e4p-9c-CJX"/>
<constraint firstAttribute="trailing" secondItem="94o-cl-llH" secondAttribute="trailing" id="h4e-ni-wlv"/>
<constraint firstItem="94o-cl-llH" firstAttribute="top" secondItem="1iN-zp-2H5" secondAttribute="top" constant="-2" id="nhD-DY-eSM"/>
</constraints>
</tableViewCellContentView>
<connections>
<outlet property="imgCostomer" destination="Mgn-Bk-ZnK" id="6JP-NA-tzp"/>
<outlet property="lblMessage" destination="d14-Ua-TdU" id="n6t-9f-C2n"/>
<outlet property="imgCostomer" destination="D9M-mS-Hwx" id="MWX-sJ-vzX"/>
<outlet property="lblMessage" destination="8ha-jN-2ND" id="67t-SY-qCw"/>
</connections>
</tableViewCell>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" indentationWidth="10" reuseIdentifier="master" rowHeight="72" id="qvz-QP-tYe" customClass="OnlineEnquiryMasterCell" customModule="Bhagyashree" customModuleProvider="target">
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" indentationWidth="10" reuseIdentifier="master" rowHeight="72" id="y7D-Pc-Lbj" customClass="OnlineEnquiryMasterCell" customModule="Bhagyashree" customModuleProvider="target">
<rect key="frame" x="0.0" y="100" width="375" height="72"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="qvz-QP-tYe" id="QOO-Nx-wDA">
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="y7D-Pc-Lbj" id="hxv-7D-uvL">
<rect key="frame" x="0.0" y="0.0" width="375" height="72"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="dbG-om-JX6" customClass="DrawView" customModule="Bhagyashree" customModuleProvider="target">
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="0GF-0U-ncY" customClass="DrawView" customModule="Bhagyashree" customModuleProvider="target">
<rect key="frame" x="15" y="16" width="295" height="49"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="You have a new reservation service. Please be aware of it." textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="tho-QS-me4">
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="You have a new reservation service. Please be aware of it." textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="RcM-Kh-Db6">
<rect key="frame" x="5" y="3" width="290" height="41"/>
<color key="backgroundColor" red="0.023529411760000001" green="0.41960784309999999" blue="0.64313725489999995" alpha="1" colorSpace="calibratedRGB"/>
<fontDescription key="fontDescription" type="system" pointSize="16"/>
......@@ -1535,10 +1535,10 @@
</subviews>
<color key="backgroundColor" red="0.023529411760000001" green="0.41960784309999999" blue="0.64313725489999995" alpha="1" colorSpace="calibratedRGB"/>
<constraints>
<constraint firstAttribute="trailing" secondItem="tho-QS-me4" secondAttribute="trailing" id="Fkd-T8-RL0"/>
<constraint firstItem="tho-QS-me4" firstAttribute="top" secondItem="dbG-om-JX6" secondAttribute="top" constant="3" id="foj-YQ-903"/>
<constraint firstAttribute="bottom" secondItem="tho-QS-me4" secondAttribute="bottom" constant="5" id="hha-ec-UM9"/>
<constraint firstItem="tho-QS-me4" firstAttribute="leading" secondItem="dbG-om-JX6" secondAttribute="leading" constant="5" id="xIW-id-EXL"/>
<constraint firstAttribute="trailing" secondItem="RcM-Kh-Db6" secondAttribute="trailing" id="5yh-e5-F7s"/>
<constraint firstItem="RcM-Kh-Db6" firstAttribute="leading" secondItem="0GF-0U-ncY" secondAttribute="leading" constant="5" id="eHI-9G-fPg"/>
<constraint firstItem="RcM-Kh-Db6" firstAttribute="top" secondItem="0GF-0U-ncY" secondAttribute="top" constant="3" id="pGf-1A-dxb"/>
<constraint firstAttribute="bottom" secondItem="RcM-Kh-Db6" secondAttribute="bottom" constant="5" id="y8L-QE-u96"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
......@@ -1549,12 +1549,12 @@
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</view>
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="redraw" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="W3J-nz-ZzT" customClass="DrawImage" customModule="Bhagyashree" customModuleProvider="target">
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="redraw" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="HhE-Ym-8vx" customClass="DrawImage" customModule="Bhagyashree" customModuleProvider="target">
<rect key="frame" x="322" y="8" width="45" height="45"/>
<color key="backgroundColor" red="0.80000000000000004" green="0.80000000000000004" blue="0.80000000000000004" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<constraints>
<constraint firstAttribute="height" constant="45" id="0DK-CA-bKE"/>
<constraint firstAttribute="width" constant="45" id="SzZ-6B-qsW"/>
<constraint firstAttribute="width" constant="45" id="AnI-Ij-jlh"/>
<constraint firstAttribute="height" constant="45" id="MU8-cp-vy0"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
......@@ -1562,10 +1562,10 @@
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</imageView>
<view hidden="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="cA3-6N-2az">
<view hidden="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="7RE-zG-xdM">
<rect key="frame" x="0.0" y="11" width="13" height="61"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="lqc-ay-w7H">
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="tWA-6H-jH9">
<rect key="frame" x="1" y="0.0" width="10" height="57"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<nil key="textColor"/>
......@@ -1574,45 +1574,45 @@
</subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstItem="lqc-ay-w7H" firstAttribute="leading" secondItem="cA3-6N-2az" secondAttribute="leading" constant="1" id="OrA-Bl-ykh"/>
<constraint firstAttribute="bottom" secondItem="lqc-ay-w7H" secondAttribute="bottom" constant="4" id="RZu-3E-xnW"/>
<constraint firstItem="lqc-ay-w7H" firstAttribute="top" secondItem="cA3-6N-2az" secondAttribute="top" id="aSX-5P-zRV"/>
<constraint firstAttribute="trailing" secondItem="lqc-ay-w7H" secondAttribute="trailing" constant="2" id="cKL-gz-f9i"/>
<constraint firstAttribute="width" constant="13" id="fQP-ct-w6x"/>
<constraint firstAttribute="trailing" secondItem="tWA-6H-jH9" secondAttribute="trailing" constant="2" id="7Ne-25-RdL"/>
<constraint firstItem="tWA-6H-jH9" firstAttribute="leading" secondItem="7RE-zG-xdM" secondAttribute="leading" constant="1" id="LQ6-uE-wAn"/>
<constraint firstItem="tWA-6H-jH9" firstAttribute="top" secondItem="7RE-zG-xdM" secondAttribute="top" id="hlO-0h-N2G"/>
<constraint firstAttribute="width" constant="13" id="xjf-lt-EZa"/>
<constraint firstAttribute="bottom" secondItem="tWA-6H-jH9" secondAttribute="bottom" constant="4" id="ynT-iw-FsF"/>
</constraints>
</view>
</subviews>
<color key="backgroundColor" red="0.89019607840000003" green="0.97254901959999995" blue="0.99607843139999996" alpha="1" colorSpace="calibratedRGB"/>
<constraints>
<constraint firstItem="dbG-om-JX6" firstAttribute="leading" secondItem="QOO-Nx-wDA" secondAttribute="leading" constant="15" id="AfQ-CA-CjG"/>
<constraint firstAttribute="bottom" secondItem="cA3-6N-2az" secondAttribute="bottom" id="TbV-Gu-Pzp"/>
<constraint firstItem="cA3-6N-2az" firstAttribute="top" secondItem="QOO-Nx-wDA" secondAttribute="top" constant="11" id="ZfQ-em-Tbq"/>
<constraint firstItem="cA3-6N-2az" firstAttribute="leading" secondItem="QOO-Nx-wDA" secondAttribute="leading" id="d5Z-GH-J5V"/>
<constraint firstItem="W3J-nz-ZzT" firstAttribute="leading" secondItem="dbG-om-JX6" secondAttribute="trailing" constant="12" id="hi6-8C-Xxo"/>
<constraint firstAttribute="bottom" secondItem="dbG-om-JX6" secondAttribute="bottom" constant="7" id="kc7-Cr-SRs"/>
<constraint firstItem="dbG-om-JX6" firstAttribute="top" secondItem="QOO-Nx-wDA" secondAttribute="top" constant="16" id="sh8-DT-dJA"/>
<constraint firstItem="W3J-nz-ZzT" firstAttribute="top" secondItem="QOO-Nx-wDA" secondAttribute="top" constant="8" id="uNO-if-hTy"/>
<constraint firstAttribute="trailing" secondItem="W3J-nz-ZzT" secondAttribute="trailing" constant="8" id="ys2-sd-5ad"/>
<constraint firstItem="HhE-Ym-8vx" firstAttribute="leading" secondItem="0GF-0U-ncY" secondAttribute="trailing" constant="12" id="APj-ig-RwE"/>
<constraint firstItem="7RE-zG-xdM" firstAttribute="top" secondItem="hxv-7D-uvL" secondAttribute="top" constant="11" id="DQs-SH-AR9"/>
<constraint firstItem="0GF-0U-ncY" firstAttribute="top" secondItem="hxv-7D-uvL" secondAttribute="top" constant="16" id="FWo-LR-IBy"/>
<constraint firstAttribute="bottom" secondItem="7RE-zG-xdM" secondAttribute="bottom" id="Kbr-sT-jr5"/>
<constraint firstItem="7RE-zG-xdM" firstAttribute="leading" secondItem="hxv-7D-uvL" secondAttribute="leading" id="aOP-gY-iuK"/>
<constraint firstItem="HhE-Ym-8vx" firstAttribute="top" secondItem="hxv-7D-uvL" secondAttribute="top" constant="8" id="gQ7-Ez-Qa1"/>
<constraint firstAttribute="bottom" secondItem="0GF-0U-ncY" secondAttribute="bottom" constant="7" id="nhQ-hx-Ymv"/>
<constraint firstItem="0GF-0U-ncY" firstAttribute="leading" secondItem="hxv-7D-uvL" secondAttribute="leading" constant="15" id="oZt-Fl-Auj"/>
<constraint firstAttribute="trailing" secondItem="HhE-Ym-8vx" secondAttribute="trailing" constant="8" id="zlX-fb-sRl"/>
</constraints>
</tableViewCellContentView>
<connections>
<outlet property="imgMaster" destination="W3J-nz-ZzT" id="u1k-0g-dMM"/>
<outlet property="lblMessage" destination="tho-QS-me4" id="WSI-Vg-6Ja"/>
<outlet property="imgMaster" destination="HhE-Ym-8vx" id="lTw-Uv-1G3"/>
<outlet property="lblMessage" destination="RcM-Kh-Db6" id="DaX-Qr-qyi"/>
</connections>
</tableViewCell>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" indentationWidth="10" reuseIdentifier="customerAudio" rowHeight="61" id="o1g-bv-fBp" customClass="OnlineEnquiryCustomerAudioCell" customModule="Bhagyashree" customModuleProvider="target">
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" indentationWidth="10" reuseIdentifier="customerAudio" rowHeight="61" id="vtw-sw-ByE" customClass="OnlineEnquiryCustomerAudioCell" customModule="Bhagyashree" customModuleProvider="target">
<rect key="frame" x="0.0" y="172" width="375" height="61"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="o1g-bv-fBp" id="fsO-Dn-hfR">
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="vtw-sw-ByE" id="MR8-CV-L0i">
<rect key="frame" x="0.0" y="0.0" width="375" height="61"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="redraw" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="uUj-A8-ON8" customClass="DrawImage" customModule="Bhagyashree" customModuleProvider="target">
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="redraw" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="Evu-cm-ct0" customClass="DrawImage" customModule="Bhagyashree" customModuleProvider="target">
<rect key="frame" x="8" y="8" width="45" height="45"/>
<color key="backgroundColor" red="0.80000000000000004" green="0.80000000000000004" blue="0.80000000000000004" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<constraints>
<constraint firstAttribute="width" constant="45" id="aw4-MD-OxL"/>
<constraint firstAttribute="height" constant="45" id="hUZ-CW-Qt8"/>
<constraint firstAttribute="width" constant="45" id="El2-Mz-dSf"/>
<constraint firstAttribute="height" constant="45" id="Ycb-pR-brl"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
......@@ -1620,46 +1620,46 @@
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</imageView>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Yv0-Ls-SuI">
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="pld-Df-z7X">
<rect key="frame" x="69" y="8" width="45" height="45"/>
<constraints>
<constraint firstAttribute="width" constant="45" id="H2u-OT-Ea0"/>
<constraint firstAttribute="height" constant="45" id="WWu-VI-2Ku"/>
<constraint firstAttribute="height" constant="45" id="XbZ-vL-zoL"/>
<constraint firstAttribute="width" constant="45" id="Z29-nc-MV1"/>
</constraints>
<state key="normal" image="play"/>
<connections>
<action selector="play" destination="o1g-bv-fBp" eventType="touchUpInside" id="Lr2-We-MK3"/>
<action selector="play" destination="vtw-sw-ByE" eventType="touchUpInside" id="1bv-0J-FCh"/>
</connections>
</button>
</subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstItem="uUj-A8-ON8" firstAttribute="top" secondItem="fsO-Dn-hfR" secondAttribute="top" constant="8" id="ACl-fp-79Z"/>
<constraint firstItem="uUj-A8-ON8" firstAttribute="leading" secondItem="fsO-Dn-hfR" secondAttribute="leading" constant="8" id="CWW-To-llp"/>
<constraint firstItem="Yv0-Ls-SuI" firstAttribute="top" secondItem="fsO-Dn-hfR" secondAttribute="top" constant="8" id="RvO-Ap-0wm"/>
<constraint firstItem="Yv0-Ls-SuI" firstAttribute="leading" secondItem="uUj-A8-ON8" secondAttribute="trailing" constant="16" id="Vkm-rq-IG4"/>
<constraint firstAttribute="bottom" secondItem="uUj-A8-ON8" secondAttribute="bottom" constant="8" id="c6Y-zW-VFJ"/>
<constraint firstAttribute="bottom" secondItem="Yv0-Ls-SuI" secondAttribute="bottom" constant="8" id="sr5-7J-OjO"/>
<constraint firstAttribute="bottom" secondItem="Evu-cm-ct0" secondAttribute="bottom" constant="8" id="DPM-MN-zmw"/>
<constraint firstItem="pld-Df-z7X" firstAttribute="top" secondItem="MR8-CV-L0i" secondAttribute="top" constant="8" id="Jiq-mU-J2w"/>
<constraint firstItem="pld-Df-z7X" firstAttribute="leading" secondItem="Evu-cm-ct0" secondAttribute="trailing" constant="16" id="Y0c-pu-svu"/>
<constraint firstAttribute="bottom" secondItem="pld-Df-z7X" secondAttribute="bottom" constant="8" id="bsg-mJ-DIg"/>
<constraint firstItem="Evu-cm-ct0" firstAttribute="leading" secondItem="MR8-CV-L0i" secondAttribute="leading" constant="8" id="mmD-30-JvK"/>
<constraint firstItem="Evu-cm-ct0" firstAttribute="top" secondItem="MR8-CV-L0i" secondAttribute="top" constant="8" id="sXf-co-jLV"/>
</constraints>
</tableViewCellContentView>
<connections>
<outlet property="btnPlay" destination="Yv0-Ls-SuI" id="z8X-dt-3hz"/>
<outlet property="imgCostomer" destination="uUj-A8-ON8" id="aB2-uK-84T"/>
<outlet property="btnPlay" destination="pld-Df-z7X" id="54R-sU-Ny3"/>
<outlet property="imgCostomer" destination="Evu-cm-ct0" id="pWG-WF-LIQ"/>
</connections>
</tableViewCell>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" indentationWidth="10" reuseIdentifier="masterAudio" rowHeight="61" id="Jpr-96-NaU" customClass="OnlineEnquiryMasterAudioCell" customModule="Bhagyashree" customModuleProvider="target">
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" indentationWidth="10" reuseIdentifier="masterAudio" rowHeight="61" id="LQQ-dP-WjW" customClass="OnlineEnquiryMasterAudioCell" customModule="Bhagyashree" customModuleProvider="target">
<rect key="frame" x="0.0" y="233" width="375" height="61"/>
<autoresizingMask key="autoresizingMask"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="Jpr-96-NaU" id="96A-xb-nLp">
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="LQQ-dP-WjW" id="MuQ-Ov-P3i">
<rect key="frame" x="0.0" y="0.0" width="375" height="61"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="redraw" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="ZeJ-0C-KBp" customClass="DrawImage" customModule="Bhagyashree" customModuleProvider="target">
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="redraw" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="0r5-hR-PaV" customClass="DrawImage" customModule="Bhagyashree" customModuleProvider="target">
<rect key="frame" x="322" y="8" width="45" height="45"/>
<color key="backgroundColor" red="0.80000000000000004" green="0.80000000000000004" blue="0.80000000000000004" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<constraints>
<constraint firstAttribute="height" constant="45" id="Giy-8a-es5"/>
<constraint firstAttribute="width" constant="45" id="Yly-eu-xGE"/>
<constraint firstAttribute="width" constant="45" id="Mc3-4r-0hJ"/>
<constraint firstAttribute="height" constant="45" id="pGM-pt-fdA"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
......@@ -1667,113 +1667,112 @@
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</imageView>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="5iO-aw-rRo">
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="INU-uV-RT0">
<rect key="frame" x="263" y="8" width="45" height="45"/>
<constraints>
<constraint firstAttribute="width" constant="45" id="Gms-nh-Jxy"/>
<constraint firstAttribute="height" constant="45" id="bsn-Ba-jPA"/>
<constraint firstAttribute="width" constant="45" id="9CZ-jl-scF"/>
<constraint firstAttribute="height" constant="45" id="ti6-VD-5nh"/>
</constraints>
<state key="normal" image="play"/>
<connections>
<action selector="play" destination="Jpr-96-NaU" eventType="touchUpInside" id="Nmf-Xb-Pzo"/>
<action selector="play" destination="LQQ-dP-WjW" eventType="touchUpInside" id="REZ-mg-ckA"/>
</connections>
</button>
</subviews>
<constraints>
<constraint firstAttribute="bottom" secondItem="5iO-aw-rRo" secondAttribute="bottom" constant="8" id="bP6-zU-bwU"/>
<constraint firstItem="ZeJ-0C-KBp" firstAttribute="top" secondItem="96A-xb-nLp" secondAttribute="top" constant="8" id="d4a-5t-a75"/>
<constraint firstAttribute="trailing" secondItem="ZeJ-0C-KBp" secondAttribute="trailing" constant="8" id="mf8-Bv-nNA"/>
<constraint firstItem="5iO-aw-rRo" firstAttribute="top" secondItem="96A-xb-nLp" secondAttribute="top" constant="8" id="pYe-iX-lDR"/>
<constraint firstAttribute="bottom" secondItem="ZeJ-0C-KBp" secondAttribute="bottom" constant="8" id="rIJ-dG-LgZ"/>
<constraint firstItem="ZeJ-0C-KBp" firstAttribute="leading" secondItem="5iO-aw-rRo" secondAttribute="trailing" constant="14" id="uKK-LI-YYn"/>
<constraint firstItem="0r5-hR-PaV" firstAttribute="top" secondItem="MuQ-Ov-P3i" secondAttribute="top" constant="8" id="3Qv-v1-QM7"/>
<constraint firstItem="0r5-hR-PaV" firstAttribute="leading" secondItem="INU-uV-RT0" secondAttribute="trailing" constant="14" id="EVM-R0-9B3"/>
<constraint firstAttribute="bottom" secondItem="INU-uV-RT0" secondAttribute="bottom" constant="8" id="N77-kx-ssw"/>
<constraint firstItem="INU-uV-RT0" firstAttribute="top" secondItem="MuQ-Ov-P3i" secondAttribute="top" constant="8" id="Qeb-J7-lBd"/>
<constraint firstAttribute="trailing" secondItem="0r5-hR-PaV" secondAttribute="trailing" constant="8" id="WMc-gG-XC9"/>
<constraint firstAttribute="bottom" secondItem="0r5-hR-PaV" secondAttribute="bottom" constant="8" id="XzI-yU-gYC"/>
</constraints>
</tableViewCellContentView>
<connections>
<outlet property="btnPlay" destination="5iO-aw-rRo" id="opK-LU-VAH"/>
<outlet property="imgMaster" destination="ZeJ-0C-KBp" id="WUH-Pj-W2C"/>
<outlet property="btnPlay" destination="INU-uV-RT0" id="y20-6U-C8u"/>
<outlet property="imgMaster" destination="0r5-hR-PaV" id="Q8U-NR-1Jt"/>
</connections>
</tableViewCell>
</prototypes>
<connections>
<outlet property="dataSource" destination="Psj-7u-2hR" id="uUJ-UY-a35"/>
<outlet property="delegate" destination="Psj-7u-2hR" id="XDT-vv-hmf"/>
<outlet property="dataSource" destination="cqt-hL-ZvC" id="QFe-Sh-N1u"/>
<outlet property="delegate" destination="cqt-hL-ZvC" id="nop-DJ-m6X"/>
</connections>
</tableView>
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="shadow" translatesAutoresizingMaskIntoConstraints="NO" id="dwr-LW-a5Z">
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="shadow" translatesAutoresizingMaskIntoConstraints="NO" id="FdC-A9-nbL">
<rect key="frame" x="0.0" y="0.0" width="375" height="5"/>
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstAttribute="height" constant="5" id="axd-D6-42c"/>
<constraint firstAttribute="height" constant="5" id="VNZ-pF-249"/>
</constraints>
</imageView>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Sld-01-3ke" customClass="DrawView" customModule="Bhagyashree" customModuleProvider="target">
<rect key="frame" x="-1" y="670" width="377" height="44"/>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Qgp-dt-XVE" customClass="DrawView" customModule="Bhagyashree" customModuleProvider="target">
<rect key="frame" x="-1" y="672" width="377" height="42"/>
<subviews>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="bzQ-Wj-cDY">
<rect key="frame" x="9" y="8" width="30" height="30"/>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="xsK-By-FbY">
<rect key="frame" x="9" y="9.3333333333333712" width="30" height="30"/>
<constraints>
<constraint firstAttribute="height" constant="30" id="KtL-rv-gnc"/>
<constraint firstAttribute="width" constant="30" id="u9Q-h8-dBL"/>
<constraint firstAttribute="width" constant="30" id="4n9-nb-FLJ"/>
<constraint firstAttribute="height" constant="30" id="VVE-sR-Lye"/>
</constraints>
<state key="normal" image="speech"/>
</button>
<textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" textAlignment="natural" translatesAutoresizingMaskIntoConstraints="NO" id="aYB-vl-13h">
<rect key="frame" x="47" y="4" width="264" height="37"/>
<textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" bounces="NO" scrollEnabled="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" bouncesZoom="NO" textAlignment="natural" translatesAutoresizingMaskIntoConstraints="NO" id="0MC-GQ-caI">
<rect key="frame" x="47" y="4" width="264" height="34"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<fontDescription key="fontDescription" type="system" pointSize="15"/>
<textInputTraits key="textInputTraits" autocapitalizationType="sentences"/>
<connections>
<outlet property="delegate" destination="Psj-7u-2hR" id="U4E-YK-qWD"/>
<outlet property="delegate" destination="cqt-hL-ZvC" id="Dsc-9G-VMU"/>
</connections>
</textView>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Write a message ..." textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="MTH-Qs-B62">
<rect key="frame" x="53" y="7" width="244" height="33"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Write a message ..." textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="qNb-Li-viO">
<rect key="frame" x="51" y="6" width="258" height="31"/>
<fontDescription key="fontDescription" type="system" pointSize="16"/>
<color key="textColor" red="0.69013684990000002" green="0.69023543600000004" blue="0.69010573630000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<nil key="highlightedColor"/>
</label>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="aVM-iS-vM0">
<rect key="frame" x="312" y="7" width="57" height="30"/>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="rXt-US-LwS">
<rect key="frame" x="-1" y="0.0" width="46" height="37.333333333333336"/>
<constraints>
<constraint firstAttribute="width" constant="57" id="OMD-Xy-JSS"/>
<constraint firstAttribute="height" constant="30" id="nnd-0b-BP8"/>
<constraint firstAttribute="width" constant="46" id="9aD-nM-dae"/>
</constraints>
<state key="normal" title="post">
<color key="titleColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
</state>
<connections>
<action selector="sendMessage" destination="Psj-7u-2hR" eventType="touchUpInside" id="FSi-Dw-8dp"/>
<action selector="endRecordAudio" destination="cqt-hL-ZvC" eventType="touchUpInside" id="A9C-Kr-aRe"/>
<action selector="startRecordAudio" destination="cqt-hL-ZvC" eventType="touchDown" id="Uwb-Q5-0wM"/>
</connections>
</button>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="cQ2-Aa-1ew">
<rect key="frame" x="-1" y="0.0" width="46" height="44"/>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="cmC-IL-sZo">
<rect key="frame" x="320" y="6" width="52" height="30"/>
<constraints>
<constraint firstAttribute="width" constant="46" id="aHg-yd-Kel"/>
<constraint firstAttribute="width" constant="52" id="Do5-u9-TFN"/>
<constraint firstAttribute="height" constant="30" id="NRQ-LM-1on"/>
</constraints>
<state key="normal" title="Post">
<color key="titleColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
</state>
<connections>
<action selector="endRecordAudio" destination="Psj-7u-2hR" eventType="touchUpInside" id="gDO-ib-JKV"/>
<action selector="startRecordAudio" destination="Psj-7u-2hR" eventType="touchDown" id="i0V-Ht-C1g"/>
<action selector="sendMessage" destination="cqt-hL-ZvC" eventType="touchUpInside" id="C08-4z-5Q7"/>
</connections>
</button>
</subviews>
<color key="backgroundColor" cocoaTouchSystemColor="groupTableViewBackgroundColor"/>
<constraints>
<constraint firstItem="bzQ-Wj-cDY" firstAttribute="leading" secondItem="Sld-01-3ke" secondAttribute="leading" constant="9" id="8Jh-eB-1eQ"/>
<constraint firstItem="aVM-iS-vM0" firstAttribute="leading" secondItem="aYB-vl-13h" secondAttribute="trailing" constant="1" id="C3b-QA-UwX"/>
<constraint firstItem="MTH-Qs-B62" firstAttribute="leading" secondItem="bzQ-Wj-cDY" secondAttribute="trailing" constant="14" id="D2Y-Yi-ZHP"/>
<constraint firstAttribute="bottom" secondItem="cQ2-Aa-1ew" secondAttribute="bottom" id="DgF-3s-471"/>
<constraint firstItem="aVM-iS-vM0" firstAttribute="centerY" secondItem="Sld-01-3ke" secondAttribute="centerY" id="HPy-FV-KC7"/>
<constraint firstItem="cQ2-Aa-1ew" firstAttribute="leading" secondItem="Sld-01-3ke" secondAttribute="leading" constant="-1" id="WLg-Rm-ZDF"/>
<constraint firstAttribute="trailing" secondItem="aVM-iS-vM0" secondAttribute="trailing" constant="8" id="X4H-iG-yyc"/>
<constraint firstItem="aYB-vl-13h" firstAttribute="top" secondItem="Sld-01-3ke" secondAttribute="top" constant="4" id="ZQd-tI-S63"/>
<constraint firstItem="cQ2-Aa-1ew" firstAttribute="top" secondItem="Sld-01-3ke" secondAttribute="top" id="beF-7g-4Iz"/>
<constraint firstAttribute="bottom" secondItem="bzQ-Wj-cDY" secondAttribute="bottom" constant="6" id="hGc-vM-TzD"/>
<constraint firstAttribute="bottom" secondItem="MTH-Qs-B62" secondAttribute="bottom" constant="4" id="kqs-b5-1aZ"/>
<constraint firstAttribute="bottom" secondItem="aYB-vl-13h" secondAttribute="bottom" constant="3" id="lUg-DO-ywx"/>
<constraint firstItem="aVM-iS-vM0" firstAttribute="leading" secondItem="MTH-Qs-B62" secondAttribute="trailing" constant="15" id="o9a-Pi-LEy"/>
<constraint firstItem="aYB-vl-13h" firstAttribute="leading" secondItem="bzQ-Wj-cDY" secondAttribute="trailing" constant="8" id="u0T-wn-kHz"/>
<constraint firstItem="MTH-Qs-B62" firstAttribute="top" secondItem="Sld-01-3ke" secondAttribute="top" constant="7" id="z7E-aq-KJQ"/>
<constraint firstAttribute="height" constant="44" id="zyR-Jh-Kpw"/>
<constraint firstItem="cmC-IL-sZo" firstAttribute="leading" secondItem="qNb-Li-viO" secondAttribute="trailing" constant="11" id="0np-Rf-fCO"/>
<constraint firstItem="0MC-GQ-caI" firstAttribute="top" secondItem="Qgp-dt-XVE" secondAttribute="top" constant="4" id="5Io-Pf-Au4"/>
<constraint firstItem="cmC-IL-sZo" firstAttribute="leading" secondItem="0MC-GQ-caI" secondAttribute="trailing" constant="9" id="8fK-MX-Sbq"/>
<constraint firstAttribute="trailing" secondItem="cmC-IL-sZo" secondAttribute="trailing" constant="5" id="CJr-p9-7Ds"/>
<constraint firstAttribute="bottom" secondItem="rXt-US-LwS" secondAttribute="bottom" constant="4.6666666666666679" id="D5o-Vx-vR8"/>
<constraint firstItem="0MC-GQ-caI" firstAttribute="leading" secondItem="xsK-By-FbY" secondAttribute="trailing" constant="8" id="D6H-kg-AOh"/>
<constraint firstAttribute="bottom" secondItem="xsK-By-FbY" secondAttribute="bottom" constant="2.6666666666666288" id="Gfq-bl-Zab"/>
<constraint firstItem="rXt-US-LwS" firstAttribute="top" secondItem="Qgp-dt-XVE" secondAttribute="top" id="LIx-nX-YkZ"/>
<constraint firstItem="qNb-Li-viO" firstAttribute="top" secondItem="Qgp-dt-XVE" secondAttribute="top" constant="6" id="Rdp-cC-HKe"/>
<constraint firstAttribute="bottom" secondItem="0MC-GQ-caI" secondAttribute="bottom" constant="4" id="UxC-fI-04G"/>
<constraint firstItem="qNb-Li-viO" firstAttribute="leading" secondItem="xsK-By-FbY" secondAttribute="trailing" constant="12" id="fmf-EQ-rfE"/>
<constraint firstItem="xsK-By-FbY" firstAttribute="leading" secondItem="Qgp-dt-XVE" secondAttribute="leading" constant="9" id="mZh-DM-AAf"/>
<constraint firstAttribute="bottom" secondItem="qNb-Li-viO" secondAttribute="bottom" constant="5" id="oaM-s5-l1g"/>
<constraint firstAttribute="bottom" secondItem="cmC-IL-sZo" secondAttribute="bottom" constant="6" id="vR0-Hh-hcK"/>
<constraint firstItem="rXt-US-LwS" firstAttribute="leading" secondItem="Qgp-dt-XVE" secondAttribute="leading" constant="-1" id="vXh-mq-1cZ"/>
</constraints>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="color" keyPath="borderColor">
......@@ -1787,54 +1786,53 @@
</subviews>
<color key="backgroundColor" red="0.89019607840000003" green="0.97254901959999995" blue="0.99607843139999996" alpha="1" colorSpace="calibratedRGB"/>
<constraints>
<constraint firstItem="dwr-LW-a5Z" firstAttribute="leading" secondItem="vYu-JF-mFG" secondAttribute="leading" id="4ic-Wm-aIf"/>
<constraint firstAttribute="trailing" secondItem="zMo-HV-qAx" secondAttribute="trailing" id="8sU-5h-gu6"/>
<constraint firstAttribute="trailing" secondItem="dwr-LW-a5Z" secondAttribute="trailing" id="B3u-aS-bkS"/>
<constraint firstItem="zMo-HV-qAx" firstAttribute="top" secondItem="vYu-JF-mFG" secondAttribute="top" id="GTm-SV-beh"/>
<constraint firstItem="dwr-LW-a5Z" firstAttribute="top" secondItem="vYu-JF-mFG" secondAttribute="top" id="MAj-CE-dP2"/>
<constraint firstItem="Sld-01-3ke" firstAttribute="leading" secondItem="vYu-JF-mFG" secondAttribute="leading" constant="-1" id="UuO-NL-VMa"/>
<constraint firstAttribute="bottom" secondItem="zMo-HV-qAx" secondAttribute="bottom" constant="44" id="VUI-dp-rEh"/>
<constraint firstAttribute="bottom" secondItem="Sld-01-3ke" secondAttribute="bottom" id="gqT-cl-Vz9"/>
<constraint firstItem="zMo-HV-qAx" firstAttribute="leading" secondItem="vYu-JF-mFG" secondAttribute="leading" id="t74-E1-y36"/>
<constraint firstAttribute="trailing" secondItem="Sld-01-3ke" secondAttribute="trailing" constant="-1" id="yqf-UJ-Iq8"/>
<constraint firstAttribute="trailing" secondItem="Qgp-dt-XVE" secondAttribute="trailing" constant="-1" id="8Pb-JP-hZU"/>
<constraint firstItem="mxy-ht-vtG" firstAttribute="leading" secondItem="A2A-HJ-yrg" secondAttribute="leading" id="E9c-Hv-17X"/>
<constraint firstAttribute="bottom" secondItem="Qgp-dt-XVE" secondAttribute="bottom" id="IKP-uV-EYM"/>
<constraint firstItem="Qgp-dt-XVE" firstAttribute="top" secondItem="mxy-ht-vtG" secondAttribute="bottom" constant="2.3333333333333712" id="TPJ-M8-P7N"/>
<constraint firstItem="FdC-A9-nbL" firstAttribute="leading" secondItem="A2A-HJ-yrg" secondAttribute="leading" id="VCc-u4-FT7"/>
<constraint firstAttribute="trailing" secondItem="FdC-A9-nbL" secondAttribute="trailing" id="dfk-Bm-hBP"/>
<constraint firstItem="Qgp-dt-XVE" firstAttribute="leading" secondItem="A2A-HJ-yrg" secondAttribute="leading" constant="-1" id="kbY-qS-xXe"/>
<constraint firstItem="mxy-ht-vtG" firstAttribute="top" secondItem="A2A-HJ-yrg" secondAttribute="top" id="kyz-Wm-S4W"/>
<constraint firstAttribute="trailing" secondItem="mxy-ht-vtG" secondAttribute="trailing" id="lQF-dj-QY1"/>
<constraint firstItem="FdC-A9-nbL" firstAttribute="top" secondItem="A2A-HJ-yrg" secondAttribute="top" id="umZ-Zo-Xy2"/>
</constraints>
</view>
</subviews>
<constraints>
<constraint firstItem="vYu-JF-mFG" firstAttribute="top" secondItem="JCY-Uj-8JW" secondAttribute="top" id="5sM-LJ-J7t"/>
<constraint firstItem="vYu-JF-mFG" firstAttribute="height" secondItem="JCY-Uj-8JW" secondAttribute="height" id="Uug-1B-97f"/>
<constraint firstAttribute="bottom" secondItem="vYu-JF-mFG" secondAttribute="bottom" id="a3V-GC-v1e"/>
<constraint firstItem="vYu-JF-mFG" firstAttribute="leading" secondItem="JCY-Uj-8JW" secondAttribute="leading" id="qOj-b6-Vsx"/>
<constraint firstAttribute="trailing" secondItem="vYu-JF-mFG" secondAttribute="trailing" id="zXQ-TS-PaV"/>
<constraint firstItem="A2A-HJ-yrg" firstAttribute="leading" secondItem="NdV-5V-vkd" secondAttribute="leading" id="LWf-hI-qxn"/>
<constraint firstItem="A2A-HJ-yrg" firstAttribute="top" secondItem="NdV-5V-vkd" secondAttribute="top" id="Lqf-Bm-tt6"/>
<constraint firstAttribute="trailing" secondItem="A2A-HJ-yrg" secondAttribute="trailing" id="VTa-30-maj"/>
<constraint firstItem="A2A-HJ-yrg" firstAttribute="height" secondItem="NdV-5V-vkd" secondAttribute="height" id="WCQ-jD-Jc6"/>
<constraint firstAttribute="bottom" secondItem="A2A-HJ-yrg" secondAttribute="bottom" id="XcL-Vm-MdL"/>
</constraints>
</scrollView>
</subviews>
<color key="backgroundColor" red="0.7843137255" green="0.92156862750000001" blue="0.99607843139999996" alpha="1" colorSpace="calibratedRGB"/>
<constraints>
<constraint firstItem="ZiM-5C-b7B" firstAttribute="leading" secondItem="6oK-ZU-QwD" secondAttribute="leading" id="KDB-dZ-CtH"/>
<constraint firstItem="vYu-JF-mFG" firstAttribute="width" secondItem="tPh-oM-m5x" secondAttribute="width" id="LS0-jv-juM"/>
<constraint firstItem="6oK-ZU-QwD" firstAttribute="bottom" secondItem="JCY-Uj-8JW" secondAttribute="bottom" id="ZbP-Ba-Y0A"/>
<constraint firstItem="6oK-ZU-QwD" firstAttribute="trailing" secondItem="ZiM-5C-b7B" secondAttribute="trailing" id="eFz-Iz-6Nh"/>
<constraint firstItem="JCY-Uj-8JW" firstAttribute="top" secondItem="ZiM-5C-b7B" secondAttribute="bottom" id="fko-UO-ssz"/>
<constraint firstItem="ZiM-5C-b7B" firstAttribute="top" secondItem="tPh-oM-m5x" secondAttribute="top" id="q5X-Xb-GQy"/>
<constraint firstItem="JCY-Uj-8JW" firstAttribute="leading" secondItem="6oK-ZU-QwD" secondAttribute="leading" id="qbU-vK-vfp"/>
<constraint firstItem="6oK-ZU-QwD" firstAttribute="trailing" secondItem="JCY-Uj-8JW" secondAttribute="trailing" id="qgF-22-0yH"/>
<constraint firstItem="CAD-4a-JSJ" firstAttribute="bottom" secondItem="NdV-5V-vkd" secondAttribute="bottom" id="2rm-nY-yAN"/>
<constraint firstItem="NdV-5V-vkd" firstAttribute="top" secondItem="8ix-nv-AtI" secondAttribute="bottom" id="LUF-tr-iBf"/>
<constraint firstItem="CAD-4a-JSJ" firstAttribute="trailing" secondItem="8ix-nv-AtI" secondAttribute="trailing" id="McR-vB-9P7"/>
<constraint firstItem="8ix-nv-AtI" firstAttribute="top" secondItem="x5M-8n-Rhu" secondAttribute="top" id="YfG-hK-HWJ"/>
<constraint firstItem="8ix-nv-AtI" firstAttribute="leading" secondItem="CAD-4a-JSJ" secondAttribute="leading" id="ZxE-jB-dOz"/>
<constraint firstItem="CAD-4a-JSJ" firstAttribute="trailing" secondItem="NdV-5V-vkd" secondAttribute="trailing" id="big-zK-aEe"/>
<constraint firstItem="A2A-HJ-yrg" firstAttribute="width" secondItem="x5M-8n-Rhu" secondAttribute="width" id="dXN-Dq-8iP"/>
<constraint firstItem="NdV-5V-vkd" firstAttribute="leading" secondItem="CAD-4a-JSJ" secondAttribute="leading" id="m6h-rU-KbW"/>
</constraints>
<viewLayoutGuide key="safeArea" id="6oK-ZU-QwD"/>
<viewLayoutGuide key="safeArea" id="CAD-4a-JSJ"/>
</view>
<nil key="simulatedTopBarMetrics"/>
<connections>
<outlet property="btnEndService" destination="mid-Xd-gsS" id="cJp-hc-uu1"/>
<outlet property="btnSend" destination="aVM-iS-vM0" id="1zJ-Hw-hTF"/>
<outlet property="chatInputView" destination="Sld-01-3ke" id="TGV-X0-NxQ"/>
<outlet property="commentViewHeight" destination="zyR-Jh-Kpw" id="kQW-fA-yBh"/>
<outlet property="lblCustomerName" destination="RX5-Vv-exD" id="1No-VB-DjB"/>
<outlet property="lblPlaceHolder" destination="MTH-Qs-B62" id="RFk-e4-kUU"/>
<outlet property="tblChat" destination="zMo-HV-qAx" id="x3N-0U-L6g"/>
<outlet property="txtComment" destination="aYB-vl-13h" id="JaU-cj-RjW"/>
<outlet property="btnEndService" destination="9uQ-AP-8qg" id="f3k-lj-TsY"/>
<outlet property="btnSend" destination="cmC-IL-sZo" id="L0w-he-jnb"/>
<outlet property="chatInputView" destination="Qgp-dt-XVE" id="Mh6-7E-ezR"/>
<outlet property="lblCustomerName" destination="Per-QD-ryF" id="yhG-jQ-a5M"/>
<outlet property="lblPlaceHolder" destination="qNb-Li-viO" id="SBc-ON-JCc"/>
<outlet property="tblChat" destination="mxy-ht-vtG" id="dkm-ba-6iI"/>
<outlet property="txtComment" destination="0MC-GQ-caI" id="D2d-g3-vCU"/>
</connections>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="vrt-CR-LhL" userLabel="First Responder" sceneMemberID="firstResponder"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="RkM-G0-9lq" userLabel="First Responder" sceneMemberID="firstResponder"/>
</objects>
<point key="canvasLocation" x="3788" y="387.93103448275866"/>
</scene>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment