我是 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
我正在制作 Mac OS X 应用程序,而不是 iOS。