FAQs on iOS Integration
- Getting Started
- Bot Building
- Smart Agent Chat
- Conversation Design
-
Developer Guides
Code Step Integration Static Step Integration Shopify Integration SETU Integration Exotel Integration CIBIL integration Freshdesk KMS Integration PayU Integration Zendesk Guide Integration Twilio Integration Razorpay Integration LeadSquared Integration USU(Unymira) Integration Helo(VivaConnect) Integration Salesforce KMS Integration Stripe Integration PayPal Integration CleverTap Integration Fynd Integration HubSpot Integration Magento Integration WooCommerce Integration Microsoft Dynamics 365 Integration
- Deployment
- External Agent Tool Setup
- Analytics & Reporting
- Notifications
- Commerce Plus
- Troubleshooting Guides
- Release Notes
Table of Contents
1. How to check web-specific logs?2. How to change navigation bar color?3. How can I hide the tab bar when presenting the chatbot?1. How to check web-specific logs?
You can connect the Safari browser on your Mac to the WKWebView, and get access to the console.
What you need to do is, from Safari, open the "Develop" tab and while the iOS Simulator is running with the WKWebView, just click it to open the console.
2. How to change navigation bar color?
Our SDK adapts to your application theme preference. You can set these preferences anywhere in your app.
if #available(iOS 13.0, *) { let appearance = UINavigationBarAppearance() appearance.configureWithDefaultBackground() appearance.backgroundColor = myBackgroundColor navigationController?.navigationBar.standardAppearance = appearance navigationController?.navigationBar.scrollEdgeAppearance = appearance //navigationController?.navigationBar.compactAppearance = appearance } else { // Fallback on earlier versions navigationController?.navigationBar.barTintColor = myBackgroundColor }
3. How can I hide the tab bar when presenting the chatbot?
Pass HPCustomBuilder object and set hidesTabBar property as true.
let customSetting = HPCustomBuilder.build { (builder) in builder.hidesTabBar = true builder.loaderEnable = true }