iOS 小经验 03

作者: Baoy的简书 | 来源:发表于2016-09-20 16:15 被阅读49次

    1,pickerView 永远是第一响应

    之前项目中要加入pickerView来选择年份和月份,自己封装的时候本来想在pickerView上加响应视图,无果,pickerView永远都是第一响应。

    2,应用内跳转

    //iCloud设置界面 

    NSURL *url = [NSURL URLWithString:@"prefs:root=CASTLE"]; if ([[UIApplication sharedApplication] canOpenURL:url] { [[UIApplication sharedApplication] openURL:url]; }

    About — prefs:root=General&path=About

    Accessibility — prefs:root=General&path=ACCESSIBILITY

    Airplane Mode On — prefs:root=AIRPLANE_MODE

    Auto-Lock — prefs:root=General&path=AUTOLOCK

    Brightness — prefs:root=Brightness

    Bluetooth — prefs:root=General&path=Bluetooth

    Date & Time — prefs:root=General&path=DATE_AND_TIME

    FaceTime — prefs:root=FACETIME

    General — prefs:root=General

    Keyboard — prefs:root=General&path=Keyboard

    iCloud — prefs:root=CASTLE

    iCloud Storage & Backup — prefs:root=CASTLE&path=STORAGE_AND_BACKUP

    International — prefs:root=General&path=INTERNATIONAL

    Location Services — prefs:root=LOCATION_SERVICES

    Music — prefs:root=MUSIC

    Music Equalizer — prefs:root=MUSIC&path=EQ

    Music Volume Limit — prefs:root=MUSIC&path=VolumeLimit

    Network — prefs:root=General&path=Network

    Nike + iPod — prefs:root=NIKE_PLUS_IPOD

    Notes — prefs:root=NOTES

    Notification — prefs:root=NOTIFICATIONS_ID

    Phone — prefs:root=Phone

    Photos — prefs:root=Photos

    Profile — prefs:root=General&path=ManagedConfigurationList

    Reset — prefs:root=General&path=Reset

    Safari — prefs:root=Safari

    Siri — prefs:root=General&path=Assistant

    Sounds — prefs:root=Sounds

    Software Update — prefs:root=General&path=SOFTWARE_UPDATE_LINK

    Store — prefs:root=STORE

    Twitter — prefs:root=TWITTER

    Usage — prefs:root=General&path=USAGE

    VPN — prefs:root=General&path=Network/VPN

    Wallpaper — prefs:root=Wallpaper

    Wi-Fi — prefs:root=WIF

    3,收起键盘的方法

    以前做这个需求的时候是,让指定的textField取消第一响应

    [self.textField resignFirstResponder];

    后来的做法是可以直接让视图变成不可编辑状态

    [self.view endEditing:YES];

    相关文章

      网友评论

        本文标题:iOS 小经验 03

        本文链接:https://www.haomeiwen.com/subject/rojoettx.html