Difference between revisions of "Swift code snippets"

From Hawk Wiki
Jump to: navigation, search
m (Swift: Convert between CGImage, CIImage and UIImage)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
=Swift Code snippts=
+
=Swift Code Snippts=
 
Back To [[IOS_Swift]]
 
Back To [[IOS_Swift]]
 
==[[Swift: Use NSUserDefaults to Store Persistence Data]]==
 
==[[Swift: Use NSUserDefaults to Store Persistence Data]]==
Line 8: Line 8:
  
 
==[[Swift:Using UIRefreshControl]]==
 
==[[Swift:Using UIRefreshControl]]==
 +
 +
==[[Swift:Using UIGestureRecognizer]]==
  
 
==Swift:Example of fetching messages from Parse==
 
==Swift:Example of fetching messages from Parse==
Line 26: Line 28:
 
==[[Swift: Convert between CGImage, CIImage and UIImage]]==
 
==[[Swift: Convert between CGImage, CIImage and UIImage]]==
  
==Swift Detect Volumn Button Press==
+
==[[Swift:Detect Volumn Button Press]]==
Credit to http://stackoverflow.com/questions/28471481/swift-detect-volume-button-press
+
 
+
Detect volume button press, also hide volume HUD
+
 
+
<pre class="brush:swift">
+
import MediaPlayer //Only for hidding  Volume view
+
func listenVolumeButton(){
+
 
+
    let audioSession = AVAudioSession.sharedInstance()
+
    audioSession.setActive(true, error: nil)
+
    audioSession.addObserver(self, forKeyPath: "outputVolume", options: NSKeyValueObservingOptions.New, context: nil)
+
    //If you want to hide Volume HUD view
+
    var volumeView: MPVolumeView = MPVolumeView(frame: CGRectZero)
+
    view.addSubview(volumeView)
+
}
+
 
+
override func observeValueForKeyPath(keyPath: String, ofObject object: AnyObject,
+
    change: [NSObject : AnyObject], context: UnsafeMutablePointer<Void>) {
+
    if keyPath == "outputVolume"{
+
        print("got in here")
+
    }
+
}
+
  
</pre>
+
==[[Swift:NSTimer scheduledTimerWithTimeInterval]]==

Latest revision as of 03:10, 9 April 2015

Swift Code Snippts

Back To IOS_Swift

Swift: Use NSUserDefaults to Store Persistence Data

Swift: Making Network Request Using NSURLConnection

Swift:Use AFNetworking setImageWithURL

Swift:Using UIRefreshControl

Swift:Using UIGestureRecognizer

Swift:Example of fetching messages from Parse

https://gist.github.com/sandofsky/7134b1ff90d235901254

Swift:Auto Table Row Height

Swift:Navigation between storyboards

Swift:Notification Observer Using NSNotificationCenter

Swift:Get Raw Histogram from CGImage

Swift:UIGraphics Drawing on UIView

Swift:UIGraphics Scale Down CGImage

Swift: Convert between CGImage, CIImage and UIImage

Swift:Detect Volumn Button Press

Swift:NSTimer scheduledTimerWithTimeInterval