Instructions integration with tab bar and cell in iOS swift
Problem: I had integrated Instructions pod in my project.I want to integrate instructions in my project with tab bar with instructions as well as if cell available then show.Otherwise not show with cell instructions. Solution: The below code will be used for get the frame for tab bar icons and collectionview header icon focus instructions. import Instructions var coachFrames:[CGRect] = [] var coachStrArray:[String] = [] // # MARK: - viewDidAppear override func viewDidAppear(_ animated: Bool) { addDemoFrames() } // # MARK: - add frames func addDemoFrames() { DispatchQueue.main.asyncAfter( deadline: .now() + .seconds(1), execute: { ...