-
I think we are using a singleton inside a closure which results in a memory leak. In addition to that there are other leaks as well.
```
Navigator.map("http://first") { [unowned self] _ in
…
-
Hi,
I'm at a complete loss and I could really use some help. There's something I must be doing wrong but I don't understand what.
The issue is that while I do have a right menu, and the slide animat…
-
I have been try to do the same thing in XCTest but it only works when I init the ViewController without storyboard. I have tried several ideas and methods but all have the same result, the deinit meth…
-
Since our current app uses two different states - customer & supplier. We'd like to be able to present two different feedback routes. As a customer the initial feedback screen is acknowledgment of the…
-
It happens in the start of my app running. this is what my ViewController like.
```swift
import UIKit
import XLPagerTabStrip
class MainTabBarViewController:ButtonBarPagerTabStripViewControll…
-
I have made a UIViewController separately on UIStoryBoard as a MenuViewController, but it throws bad exception every time when I am creating any reference IBOutlet of controller objects like UITableVi…
-
I have an idea:
```
// swift 3.0
public protocol StoryboardInstantiable { }
extension StoryboardInstantiable where Self: UIViewController {
public static func create(of storyboard: Storyboard) …
-
I am using SWRevealViewController in my new app. I have some troubles now using SWRevealViewController. my issue is ,
I have followed [this](http://www.appcoda.com/sidebar-menu-swift/) tutorial for u…
-
# Issue
I have a function that logout my user:
```
func logout() {
let storyboard = UIStoryboard(name: "Main", bundle: nil)
let controller = storyboard.instantiateInitialViewController()
…
-
My left menu has 3 items(VC1,VC2,VC3).
If now I go to VC3 from VC2 by tapping the third item in left menu , then StoryBoard use "SWRevealViewControllerSeguePushController"
push to VC3.
How can I creat…