So im new to the Swift and Xcode world.
The expected usage:
The problem:
Ive searched and searched and only found weird solutions with notifications and stuff...
How do i call like the code below that reloads a fragment in android in Swift?
FragmantClass rSum = new FragmantClass(); getSupportFragmentManager().beginTransaction().remove(rSum).commit();
Yes i want the whole viewDidLoad()
to run again...
The view controllers are not being recreated, so viewDidLoad
will not run again. Look at viewWillAppear
instead.