VB代码到Objective C

时间:2013-04-05 14:35:32

标签: objective-c vb.net

我是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。

1 个答案:

答案 0 :(得分:3)

将VB代码转换为Obj-C没有神奇的方法,你必须逐行完成,这意味着你需要学习Objective-C。

Here is a decent place to start learning。 Apple还提供了大量资源。