powershell自动提示、快速跳转、代理设置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell自动提示、快速跳转、代理设置相关的知识,希望对你有一定的参考价值。
参考技术A $profile.CurrentUserAllHosts 该指令返回的配置文件路径在普通模式与管理员模式下均生效install-module PSReadLine -requiredVersion 2.1.0 安装2.1.0版(或以上) psreadline
在配置文件中写入 Set-PSReadLineOption -PredictionSource History ,开启自动提示
install-module ZLocation ,安装后使用z快速跳转
设置当前窗口代理 :set-proxy
设置当前窗口代理 + 系统代理:set-proxy -ApplyToSystem
取消当前窗口代理:clear-proxy
取消当前窗口代理 + 系统代理:clear-proxy -ApplyToSystem
set-proxy和SetProxy,clear-proxy和ClearProxy可以互相替换
下面内容写入powershell配置文件
set http_proxy=http://127.0.0.1:19810
set https_proxy=http://127.0.0.1:19810
Swift - 判断是否有某功能访问权限,没有则提示,并自动跳转到设置页
由于 iOS 系统的安全限制,App 如果需要访问设备的通讯录、麦克风、 相册、 相机、地理位置等时,需要请求用户是否允许访问。
原文出自:www.hangge.com 转载请保留原文链接:http://www.hangge.com/blog/cache/detail_1517.html
有时用户不小心点了“不允许”,后面可能就不知道要去哪里再开启这个权限了。这就要求我们应用在每次调用相关功能的时候先获取相关的授权状态,如果还没授权则弹出授权申请的提示框。如果之前被拒绝了,则弹出相关提示框让用户很方便地自动跳转到设置页面去修改权限。
1,样例效果图
(1)这里以照片的访问权限为例。为方便演示,我在页面初始化完毕后就请求权限。
(2)第一次请求的时候我们选择“不允许”。再次启动程序时,会提示用户照片访问受限,需要授权。
(3)点击“设置”按钮后便自动跳转到系统设置页面。
2,样例代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
import UIKit import Photos class ViewController : UIViewController { override func viewDidLoad() { _ = authorize() } func authorize()-> Bool { let status = PHPhotoLibrary .authorizationStatus() switch status { case .authorized: return true case .notDetermined: // 请求授权 PHPhotoLibrary .requestAuthorization({ (status) -> Void in DispatchQueue .main.async(execute: { () -> Void in _ = self .authorize() }) }) default : () DispatchQueue .main.async(execute: { () -> Void in let alertController = UIAlertController (title: "照片访问受限" , message: "点击“设置”,允许访问您的照片" , preferredStyle: .alert) let cancelAction = UIAlertAction (title: "取消" , style: .cancel, handler: nil ) let settingsAction = UIAlertAction (title: "设置" , style: . default , handler: { (action) -> Void in let url = URL (string: UIApplicationOpenSettingsURLString ) if let url = url, UIApplication .shared.canOpenURL(url) { if #available(iOS 10, *) { UIApplication .shared.open(url, options: [:], completionHandler: { (success) in }) } else { UIApplication .shared.openURL(url) } } }) alertController.addAction(cancelAction) alertController.addAction(settingsAction) self .present(alertController, animated: true , completion: nil ) }) } return false } override func didReceiveMemoryWarning() { super .didReceiveMemoryWarning() } } |
原文出自:www.hangge.com 转载请保留原文链接:http://www.hangge.com/blog/cache/detail_1517.html
以上是关于powershell自动提示、快速跳转、代理设置的主要内容,如果未能解决你的问题,请参考以下文章
markdown Windows Powershell提示的快速设置
nginx证书制作以及配置https并设置访问http自动跳转https(反向代理转发jboss)