自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

一款模仿 iOS8 的iMessage的圖片選擇器

移動開發(fā)
這個demo是一款模仿iOS8的iMessage的圖片選擇器。在選項列表視圖中可以滾動顯示待選圖片。

支持平臺:iOS

運行環(huán)境:iOS

開發(fā)語言:swift

開發(fā)工具:Xcode

源碼大小:61.43KB

源碼簡介

這個demo是一款模仿iOS8的iMessage的圖片選擇器。在選項列表視圖中可以滾動顯示待選圖片。

源碼運行截圖

 

源碼片段

    override func viewDidLoad() { 

            super.viewDidLoad() 

              

            let tapRecognizer = UITapGestureRecognizer(target: self, action: "presentImagePickerSheet:"

            self.view.addGestureRecognizer(tapRecognizer) 

        } 

          

        // MARK: Other Methods 

          

        func presentImagePickerSheet(gestureRecognizer: UITapGestureRecognizer) { 

            let authorization = PHPhotopbrary.authorizationStatus() 

              

            if authorization == .NotDetermined { 

                PHPhotopbrary.requestAuthorization({ (status) -> Void in 

                    dispatch_async(dispatch_get_main_queue(), { () -> Void in 

                        self.presentImagePickerSheet(gestureRecognizer) 

                    }) 

                }) 

                  

                return 

            } 

              

            if authorization == .Authorized { 

                var sheet = BRNImagePickerSheet() 

                sheet.numberOfButtons = 3 

                sheet.delegate = self 

                sheet.showInView(self.view) 

            } 

            else { 

                let alertView = UIAlertView(title: NSLocapzedString("An error occurred", comment: "An error occurred"), message: NSLocapzedString("BRNImagePickerSheet needs access to the camera roll", comment: "BRNImagePickerSheet needs access to the camera roll"), delegate: nil, cancelButtonTitle: NSLocapzedString("OK", comment: "OK")) 

                alertView.show() 

            } 

        } 

源碼下載地址:http://down.51cto.com/data/1968726

責(zé)任編輯:閆佳明 來源: 網(wǎng)絡(luò)整理
相關(guān)推薦

2010-08-18 11:26:56

CISCO路由器

2009-04-27 10:50:03

思科路由器選購

2011-01-11 10:29:46

2012-04-16 14:32:31

iOS選擇器代碼

2009-05-11 15:12:03

網(wǎng)管軟件產(chǎn)品摩卡軟件

2014-08-29 15:34:27

Web安全

2009-11-30 16:59:49

2010-08-13 14:25:29

思科路由器

2023-07-03 08:25:54

2024-03-27 08:41:09

Vue3Web應(yīng)用emoji表情選擇器

2011-09-08 17:31:29

Steply社交圖片

2010-12-01 12:50:59

2020-08-07 13:44:30

殺毒軟件方案

2016-08-02 09:53:05

云計算

2009-07-16 14:50:57

IT管理網(wǎng)管軟件摩卡

2011-04-21 09:29:27

家用打印機

2015-09-28 11:23:09

iOS8iOS 9 開發(fā)

2017-02-09 18:01:22

Android圖片選擇器開發(fā)

2013-03-11 10:30:56

CSSWeb

2009-07-16 11:02:33

Swing文件選擇器
點贊
收藏

51CTO技術(shù)棧公眾號