Problem: I have a list of 4 different cells in my UITableView
. Each cell has its own unique ip address. When it's initialize, my app will check (using reachability) to see if each cell's ip address is connected to the internet or wifi. If any of the cells
is connected, the cell will be enabled and user can click it. If the cell is not connected, it will remain disabled.
*Do take note that I have a devicelist.plist
which stores all list of devices. Hence, how do I approach this problem?