Difference between revisions of "IOS Swift"

From Hawk Wiki
Jump to: navigation, search
(Swift Tips and Best Practice)
 
Line 4: Line 4:
 
===[[Swift Framework/Feature Tutorials]]===
 
===[[Swift Framework/Feature Tutorials]]===
 
===[[Swift Tips and Best Practice]]===
 
===[[Swift Tips and Best Practice]]===
 +
 +
==mac block outgoing request for ip==
 +
https://medium.com/@justmyfreak/blocking-outgoing-ip-on-mac-using-pf-ac12262248d2
 +
<pre>
 +
sudo vim /etc/pf.conf
 +
# add
 +
block drop from any to <IP Address>
 +
# save
 +
# apply change
 +
sudo pfctl -f /etc/pf.conf
 +
 +
# verify info
 +
sudo pfctl -s info
 +
#if not enable, enable by
 +
sudo pfctl -e
 +
 +
</pre>

Latest revision as of 23:39, 18 September 2019

Swift Introduction

Swift Intermediate

Swift code snippets

Swift Framework/Feature Tutorials

Swift Tips and Best Practice

mac block outgoing request for ip

https://medium.com/@justmyfreak/blocking-outgoing-ip-on-mac-using-pf-ac12262248d2

sudo vim /etc/pf.conf
# add 
block drop from any to <IP Address>
# save
# apply change
sudo pfctl -f /etc/pf.conf

# verify info 
sudo pfctl -s info
#if not enable, enable by
sudo pfctl -e