摘要:
接手别人的代码,如果代码里用了UIAppearance进行了全局设置,你自己再个别设置就会不生效,比如 应该会修改backBarButtonItem、leftBarButtonItem、rightbackBarButtonItem的颜色,但如果有代码 UIButton.appearance().ti 阅读全文
随笔档案-2018年10月
title、leftBarButtonItem、rightBarButtonItem的颜色
2018-10-18 18:42 by 法子, 1693 阅读, 收藏, 编辑
摘要:
当我们self.title = "xxx"之后,默认颜色是黑色,可以通过titleTextAttributes修改title颜色: 当我们用任何颜色的图片自定义UIBarButtonItem,然后赋给self.navigationItem.rightBarButtonItem或self.naviga 阅读全文
AVAudioSession.sharedInstance()导致其他App背景音乐被停止
2018-10-11 11:13 by 法子, 2042 阅读, 收藏, 编辑
摘要:
参考文章:https://www.jianshu.com/p/3e0a399380df 在本App中AVAudioSession.sharedInstance()会使得其他App的背景音乐停止。应该本应用使用时候其他App背景音乐暂停,使用后恢复 1、可以在开启录音或播放时候 AVAudioSess 阅读全文