How to Hide Status Bar in Swift
override func prefersStatusBarHidden() -> Bool { return true }
wallacepolsom

No title available

Discoholic 🪩
I'd rather be in outer space 🛸
cherry valley forever
Lint Roller? I Barely Know Her
Jules of Nature
"I'm Dorothy Gale from Kansas"

oozey mess

❣ Chile in a Photography ❣
RMH

No title available

Kaledo Art
No title available
Peter Solarz
Claire Keane

@theartofmadeline
he wasn't even looking at me and he found me
NASA

PR's Tumblrdome

seen from Türkiye

seen from Belgium
seen from Germany

seen from Maldives

seen from Australia

seen from South Korea

seen from Vietnam

seen from Hungary
seen from United States
seen from United States
seen from United States
seen from United States

seen from United States
seen from United States

seen from United States
seen from United States
seen from Mexico
seen from United States
seen from United States
seen from United States
@jaytrixz-dev
How to Hide Status Bar in Swift
override func prefersStatusBarHidden() -> Bool { return true }
Quick Guide in Delegates in Swift
One of the best guides in using delegates in iOS. Both in Swift and Objective-C
http://useyourloaf.com/blog/quick-guide-to-swift-delegates.html
Fix for Disappearing UISearchBar in iOS 9
This is how I fixed this issue. The answer by David Trang solved mine.
http://stackoverflow.com/questions/32687240/ios-9-searchbar-disappears-from-table-header-view-when-uisearchcontroller-is-act
Copy Text to Clipboard
My provided answer made it worked on my end. Here’s the link:
http://stackoverflow.com/questions/8869569/copy-functionality-in-ios-by-using-uipasteboard/35128247#35128247
Adding a UIActivityIndicator on UINavigationBar
The accepted answer here made it work:
http://stackoverflow.com/questions/1719533/add-uiactivityindicatorview-into-uibarbutton
Comparing NSDates
The accepted answer by Dave F made mine work:
http://stackoverflow.com/questions/5727821/compare-two-dates
Get the Current Index in UIPageViewController Regardless of Swipe Direction
Just implement this UIPageViewControllerDelegate optional method and it will get you your current index provided that your view controller has a property to store the index
func pageViewController(pageViewController: UIPageViewController, willTransitionToViewControllers pendingViewControllers: [UIViewController])
I also posted my answer here:
http://stackoverflow.com/questions/17766832/uipageviewcontroller-get-the-currentpage/34605032#34605032
Adding A Day, Minute, Hour or Second in NSDate
This is how I made it work. All of the top answers are working as expected:
http://stackoverflow.com/questions/5067785/how-do-i-add-1-day-to-a-nsdate
Transparent Navigation Bar
This is how I made it work. The accepted answer by Gabriele Petronella is the right one:
http://stackoverflow.com/questions/2315862/make-uinavigationbar-transparent
Get Unique Device Identifier in Swift
The answer by atomix made mine work:
http://stackoverflow.com/questions/25925481/how-to-get-a-unique-device-id-in-swift
Calling Same View Controller in Storyboard
The answer by Jim True made mine work
http://stackoverflow.com/questions/9226983/storyboard-segue-from-view-controller-to-itself
Cool Swift Helpers
A list of cool swift helpers that you can use:
https://gist.github.com/calebd/3ec29b084f31e41dbc76
Awesome Swift Frameworks
A list of awesome swift frameworks
https://github.com/matteocrippa/awesome-swift
AutoLayout Constraints to Center two UIButtons
Check the answer by Abubakr Dar in this link. Worked great for me! No need to add the buttons inside of a subview:
http://stackoverflow.com/questions/28148843/ios-autolayout-two-buttons-of-equal-width-side-by-side
Fix Cocoapods Header File Not Found
http://stackoverflow.com/questions/26095775/cocoapods-cant-find-header-xcode-6
Adding Auto-Correction in Custom Keyboards using UITextChecker
http://www.raywenderlich.com/forums/viewtopic.php?f=2&t=2296
Deleting Words When Using iOS u Keyboard Extensions
The solution is the one where I commented:
http://stackoverflow.com/questions/26362968/delete-entire-word-with-deletebackward-in-custom-keyboard-on-ios-8