Setup Pod on Mac

Install cocoapods with gem not with Homebrew

but first find stable version of gem and ruby if already installed then update gem

Install Ruby via RVM 1. Install RVM as per instructions or

then

If the output is: rvm is a function You may need to add “source ~/.rvm/scripts/rvm” to your ~/.bash_profile […]

person shubham sharmaaccess_time February 2, 2022launch Read More

MAC Os / iOS check network is connected or not

 

person shubham sharmaaccess_time May 21, 2019launch Read More

Swift on OS X. How to handle global mouse events?

You are correct about using addGlobalMonitorForEventsMatchingMask:handler: A simple example might look something like this: AppDelegate.swift

  GlobalEventMonitor.swift

 

person shubham sharmaaccess_time April 17, 2019launch Read More

Drag and Drop using swift 4 on mac OS

 

person shubham sharmaaccess_time April 16, 2019launch Read More

Track mouse movement Mac

  What going on here is. Simple toggle action to flip between playing/not-playing state and reflect that in the color state. Adds a NSTrackingArea to the view. The owner is this view controller so it will receive the mouseMoved: event. The option .mouseMoved is required to set this up. Removes the tracking area from the view when the slide show […]

person shubham sharmaaccess_time April 8, 2019launch Read More

Swift Multi-Threading

1- The Main Queue 2- The Global Queue: 3- Custom Queues:

 highest priority  1- userInteractive : Work is virtually instantaneous. Similar to main thread. 2- userInitiated : Work is nearly instantaneous, such as a few seconds or less. 3- default: don’t use it usually , the type will be inferred by the system 4- utility: Work takes a few seconds to a few […]

person shubham sharmaaccess_time April 6, 2019launch Read More

Swift: Dictionary And Json operations

If you need to convert JSON string into a dictionary or a dictionary into JSON String

 

person shubham sharmaaccess_time March 18, 2019launch Read More

Mac OSx Common Code

get document dir

Browse File Dialog

Read Dir

Add action to a button

Grab Thubnail from video

Get all supported screen resolutions on mac OSX Swift

 

person shubham sharmaaccess_time February 21, 2019launch Read More