English 中文(简体)
ERROR:或许没有确定指定入境点?
原标题:ERROR : perhaps the designated entry point is not set?
  • 时间:2014-11-19 09:44:17
  •  标签:
  • ios
  • swift
问题回答

我已处理同一问题,我找到解决办法:

  1. Select the Main.storyboard;
  2. Open Attributes inspector and click Is Initial View Controller in the View Controller section.

根据同样的错误信息,这项行动对我来说是行之有效的。

你们的主要控制者(切入点)是否对“初步观点主计长”进行正确的检查? 它将 next一.。

我通过点击解决问题。

<代码>Product-> Clean Building Folder

如果您使用一个以上<条码> 查询标准/编码>,并想在<条码>上登出: IDViewController<>>>> 除外,<条码>Main.story板,例如<条码>>,则你可能会出现这一错误。 选择

YourProject  -> TARGETS ->  Deployment Info -> Main Interface

In Main Interface, there are several UIStoryboard that you created for your own project. Choose the right one which contains your UIViewController.

Your Project -> TARGETS -> General -> Dplofo-> Main Interface:

Not YourProject -> TARGETS -> Deployment Info -> Main Interface.

There exists a compatibility issue between IOS 12 and IOS 13. So you have to remove the Application Scene Manifest from the info.plist in order for it to function correctly. Also, you have to remove everything related to scenes from the App Delegate.

这对我来说是一滴记忆线(iOS 12),但这个错误似乎在抱怨故事板档案,而你似乎根本不使用故事板! 相反,在计划上对集装箱观察员进行点击。 如果是这种情况,请删除<代码>的价值。 IDKit 主要故事板在建筑环境中名称,并将申请代表班作为主要切入点:

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
...

If you using the Navigation controller, then you have to give it an Initial View Controller check.

今天,我面临这一错误,但我尝试了这一错误,并发挥了作用。





相关问题
List Contents of Directory in a UITableView

I am trying to list the contents of Ringtones directory in a TableView, however, I am only getting the last file in the directory in ALL cells, instead of file per cell. This is my code: - (...

iPhone NSUserDefaults persistance difficulty

In my app i have a bunch of data i store in the NSUserdefaults. This information consists of an NSObject (Object1) with NSStrings and NSNumbers and also 2 instances of yet another object (Object2). ...

Writing a masked image to disk as a PNG file

Basically I m downloading images off of a webserver and then caching them to the disk, but before I do so I want to mask them. I m using the masking code everyone seems to point at which can be found ...

Resize UIImage with aspect ratio?

I m using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect blendMode:...

Allowing interaction with a UIView under another UIView

Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button? For instance, ...

热门标签