How To Connect Storyboard UI Component To ViewController Class Code

When we develop iOS app use Xcode, we design the app GUI ( graphical user interface ) in Main.storyboard file. And the swift source code is edited in ViewController.swift file. But how to use swift source code in ViewController.swift file to modify storyboard UI component’s attributes or process UI component’s action event? This article will […]

How To Connect Storyboard UI Component To ViewController Class Code Read More »

How To Use Source Tree To Manage Bitbucket Repository In Mac OS And Windows

Bitbucket is a website which is owned by Atlassian company. It provides free private git repository services, your source code will not be exposed to the public when saved in their repository. It also provides a bitbucket server for you when you want to install the repository server on your own machine, but bitbucket server

How To Use Source Tree To Manage Bitbucket Repository In Mac OS And Windows Read More »

How To Use Python Requests Module To Send Get Or Post Request Example

Python requests module provide functions to write web request process code easy and simple. It can send both http get and post request to web server. When you send get request to web server, you can use python request module to pass parameters. When you send post request to web server, you can use python

How To Use Python Requests Module To Send Get Or Post Request Example Read More »

How To Fix Could Not Install Packages Due To An Environmenterror: [winerror 5] Access Is Denied Error When Install Python Module In Windows

When I use the pip command to install a python module ( pip install requests )  or upgrade pip ( python -m pip install –upgrade pip ) in windows, I meet the below error message. Could not install packages due to an EnvironmentError: [WinError 5] Access is denied: ‘C:\\Program Files (x86)\\Python37-32\\Lib\\site-packages\\pip\\__init__.py’ Consider using the `–user`

How To Fix Could Not Install Packages Due To An Environmenterror: [winerror 5] Access Is Denied Error When Install Python Module In Windows Read More »

How To Install Virtualbox Extension Pack Correctly

When you use oracle VirtualBox, sometimes you need to install the VirtualBox extension. Because the VirtualBox extension provides you add-on functions such as virtual USB 2.0 & 3.0 support, VirtualBox remote desktop protocol support, Intel PXE boot ROM, Disk image encryption with AES algorithm, Host webcam passthrough, etc. But when you install it, you may

How To Install Virtualbox Extension Pack Correctly Read More »