- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在我的应用程序中实现共享按钮,因此很自然地,我转向了 UIActivityViewController
。由于某种原因,每当我按下共享按钮并弹出该按钮时,我都会在日志中收到以下消息:
Unable to simultaneously satisfy constraints.
Probably at least one of the constraints in the following list is one you don't want. Try this: (1) look at each constraint and try to figure out which you don't expect; (2) find the code that added the unwanted constraint or constraints and fix it. (Note: If you're seeing NSAutoresizingMaskLayoutConstraints that you don't understand, refer to the documentation for the UIView property translatesAutoresizingMaskIntoConstraints)
(
"<NSLayoutConstraint:0x7c0a65d0 V:[UIView:0x7c0a2fa0(<=528)]>",
"<NSLayoutConstraint:0x7c0a6540 UIView:0x7c0a2fa0.height == UIView:0x7c0a2e60.height>",
"<NSLayoutConstraint:0x7c0a7100 _UIAlertControllerView:0x7c0a27f0.height == UIView:0x7c0a2e60.height>",
"<NSLayoutConstraint:0x7c0b1660 V:[_UIAlertControllerView:0x7c0a27f0(568)]>"
)
Will attempt to recover by breaking constraint
<NSLayoutConstraint:0x7c0a65d0 V:[UIView:0x7c0a2fa0(<=528)]>
Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKit/UIView.h> may also be helpful.
2015-06-20 15:32:43.885 App[19268:300248] Unable to simultaneously satisfy constraints.
Probably at least one of the constraints in the following list is one you don't want. Try this: (1) look at each constraint and try to figure out which you don't expect; (2) find the code that added the unwanted constraint or constraints and fix it. (Note: If you're seeing NSAutoresizingMaskLayoutConstraints that you don't understand, refer to the documentation for the UIView property translatesAutoresizingMaskIntoConstraints)
(
"<NSLayoutConstraint:0x78fc3e70 V:[UIView:0x78ff1eb0(<=528)]>",
"<NSLayoutConstraint:0x78fc3de0 UIView:0x78ff1eb0.height == UIView:0x78fb9670.height>",
"<NSLayoutConstraint:0x78fc5aa0 _UIAlertControllerView:0x78ff69f0.height == UIView:0x78fb9670.height>",
"<NSLayoutConstraint:0x78f58860 V:[_UIAlertControllerView:0x78ff69f0(568)]>"
)
Will attempt to recover by breaking constraint
<NSLayoutConstraint:0x78fc3e70 V:[UIView:0x78ff1eb0(<=528)]>
Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKit/UIView.h> may also be helpful.
2015-06-20 15:32:48.691 App[19268:300248] viewServiceDidTerminateWithError: Error Domain=_UIViewServiceInterfaceErrorDomain Code=3 "The operation couldn’t be completed. (_UIViewServiceInterfaceErrorDomain error 3.)" UserInfo=0x79982700 {Message=Service Connection Interrupted}
我在调用它时并没有做任何花哨的事情,只是最基本的:
let someText:String = "Hello"
let activityViewController = UIActivityViewController(activityItems: [someText], applicationActivities: nil)
activityViewController.excludedActivityTypes = [
UIActivityTypePostToWeibo,
UIActivityTypePrint,
UIActivityTypeCopyToPasteboard,
UIActivityTypeAssignToContact,
UIActivityTypeSaveToCameraRoll,
UIActivityTypeAddToReadingList,
UIActivityTypePostToFlickr,
UIActivityTypePostToVimeo,
UIActivityTypePostToTencentWeibo
] self.navigationController!.presentViewController(activityViewController,
animated: true,
completion: nil)
这可能是 Xcode beta 7/iOS 9 的错误吗?或者我错过了什么?我应该担心吗?
最佳答案
或者:
V:[UIView:0x7c0a2fa0(<=528)
休息你应该担心吗?
关于ios - 为什么 ActivityViewController 在控制台中显示自动约束错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30954171/
我的 TableView 应用程序有一个自定义单元格。 TableViewController 称为“BlogView”。我的自定义单元格上有几个按钮,其中一个是共享按钮。我想在按下其中一个按钮时显示
我正在尝试在我的应用程序中实现共享按钮,因此很自然地,我转向了 UIActivityViewController。由于某种原因,每当我按下共享按钮并弹出该按钮时,我都会在日志中收到以下消息:
我有一个带有静态表的TableViewController;其中一个单元格包含一个名为 graphArea 的 UIView。该 View 渲染一个图表、它的背景和一条轴线——所有这些都在它的draw
如何制作支持 ActiveViewController 的应用程序? 我的意思是当用户在 safari 中打开 ActiveViewController 时,我希望我的应用程序是参与者之一。并从 sa
我有一个 UIActivity 实现了 activityViewController 方法。一切正常,除非用户快速双击我的事件图标。这会导致重复调用该方法并崩溃: Terminating app du
我正在尝试使用 UIActivityViewController 从我的应用中分享视频。下面是我使用的代码: var url = NSURL(string: path!)! var activityV
我使用以下代码在 WhatsApp 和 Mail 上分享一些网址。 @objc func onclickOfShareButton(sender:UIButton){ let myW
我目前有一个 UICollectionView,我希望能够在其中显示一个 activityViewController 以启用共享(不是来自单元格,而是来自 UIView 在 collectionVi
我有一个 swift 4/iOS 12 应用程序,它为所有 View Controller 使用自定义导航栏 barTintColor 并在 appDelegate.swift 中设置如下: UINa
我的项目全部在 Storyboard 中,我有一个 UITableViewController 嵌入到 NavigationController 中,并且在每个单元格上我都有一个按钮来共享通知。
我的应用尚未上线。我从 App Store Connect 获得了应用 ID。我想在社交媒体应用程序上分享应用程序链接。我使用了 UIActivityViewController: let strin
在 iOS 6 中使用客户 UIActivity 子类时,可以指定一个自定义 View Controller ,当您从初始 UIActionViewController 的 View 中选择您的操作时
var selectedVideoArray: Array = [] func collectionView(_ collectionView: UICollectionView, didSelect
好吧,我让我的 ActivityViewController 在正常共享时正常工作,但是每当用户在调用 ActivityViewController 后点击取消时,我都会收到恼人的 fatal err
我有 PDF 文件作为 CKAssets,它们在 UIWebView 中被调用和呈现,没有问题。我已经设法操纵代码,以便 CKAsset 将出现在 ActivityViewController 中,但
我有下面的代码来切换 UIActivityViewController @IBAction func shareButtonClicked(sender: UIButton) { let te
我正在使用新的 ActivityViewController 让用户可以在 Facebook 或 Twitter 上分享消息。我更改了 excludedActivityTypes 属性,以便在 Act
我是一名优秀的程序员,十分优秀!