iOS ::导航栏在iOS中不显示

时间:2015-07-01 11:21:54

标签: ios7 ios8 xcode6 uinavigationbar

在我的应用程序中,我添加了一个新的控制器,xib文件。我有一个Web视图,显示一些HTML数据。现在问题是它没有在屏幕的任何地方显示导航栏,但它显示了其中的Web视图数据。我可以在xib文件中看到导航栏。下面是.m文件中的代码..

 Sub SendUsingAccount() 
  Dim oAccount As Outlook.account 
  For Each oAccount In Application.Session.Accounts 
   If oAccount.AccountType = olPop3 Then 
    Dim oMail As Outlook.MailItem 
    Set oMail = Application.CreateItem(olMailItem) 
    oMail.Subject = "Sent using POP3 Account" 
    oMail.Recipients.Add ("someone@example.com") 
    oMail.Recipients.ResolveAll 
    oMail.SendUsingAccount = oAccount 
    oMail.Send 
   End If 
  Next 
 End Sub 

XIB ::

enter image description here

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

问题在于引用webview的插座。它没有设置为文件的所有者。在定义出口并删除了loadview方法后,它起作用了。