XcodeでのコーディングとObjective Cの使用は初めてですが、VBで書かれたプロジェクトの古いコードをObjective Cに変換したいと思っています。
コードは次のとおりです。
Private Sub VitalityButton4_Click(sender As Object, e As EventArgs) Handles VitalityButton4.Click
If txtWebURL.Text <> Nothing Then
Try
Dim wc As New WebClient
wc.Proxy = Nothing
Dim ST As String = wc.DownloadString("http://isup.me/" & txtWebURL.Text)
If ST.ToLower.Contains("it's not just you!") Then
txtWebStatus.Text = "Down!"
Else
txtWebStatus.Text = "Up!"
End If
Catch ex As Exception
cse()
End Try
End If
End Sub
iOSではなく、Mac OS Xアプリケーションを作成しています。