- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在努力在运行时向 UICollectionViewCell
添加按钮,并在运行时根据其类型将按钮注册到事件。按钮的类型可以是例如话语按钮和操作按钮,并且两者都应该注册到单独的事件。
UI 元素的层次结构类似于 UICollectionView
-> UICollectionViewCell
-> StackView
-> Multiple (UIView
-> UIButton
)。
问题是我无法注册 .touchUpInside
事件。
我已经尝试过的是通过按钮的实例调用becomeFirstResponder()
,将事件方法移动到UIViewController
内,并在cellForItemAt
中添加目标设置 View 层次结构后的方法,在 UICollectionView
上尝试使用 isUserInteractionEnabled
值 true
和 false
, UICollectionViewCell
、UIStackView
、UIView
和 UIButton
。
编辑1:所以代码如下所示:
class AssistantViewController: UIViewController {
private var assistantManager: AssistantManager
private var conversationSection: UICollectionView
private let layout:UICollectionViewFlowLayout = UICollectionViewFlowLayout.init()
private var multipleChoiceMessageCell = MultipleChoiceMessageCell()
private var conversationCells: [BaseCollectionViewCell] {
return [
multipleChoiceMessageCell
]
}
override func viewDidLoad() {
super.viewDidLoad()
construct()
assistantManager.performGreetingUtterance()
}
}
extension AssistantViewController: UICollectionViewDataSource {
@objc func didTapUtteranceButton() {
print ("elo I a m here")
}
func collectionView(_ collectionView: UICollectionView,
cellForItemAt indexPath: IndexPath) ->
UICollectionViewCell {
let conversationItem = assistantManager.conversationItems[indexPath.row]
let cellId = self.getCellIdentifier(for: conversationItem)
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: cellId,
for: indexPath) as? ConversationItemCell
if let conversationCell = cell {
conversationCell.layoutIfNeeded()
conversationCell.configure(with: conversationItem)
switch conversationItem {
case let .multipleChoiceMessage(chatMessage, multipleChoice): do {
for item in multipleChoice.multipleChoice.items {
switch item {
case .utteranceButton(let utteranceButton): do {
utteranceButton.button.isUserInteractionEnabled = true
utteranceButton.button.addTarget(self,
action: #selector(didTapUtteranceButton),
for: .touchUpInside)
//utteranceButton.button.becomeFirstResponder()
print("added")
}
}
}
}
default: print("Todo")
}
}
return cell!
}
class AssistantManager {
public func parseAssistantSnippets(
snippets: [Snippet]) -> ConversationCellModel {
var interactableItems: [MessageContent] = []
var utteredText:String = ""
for snippet in snippets {
switch snippet {
case .text(let text): utteredText = text.displayText
case .utteranceButton(let utteranceButton): do {
let button = UtteranceButton(buttonTitle: utteranceButton.displayText,
maxWidth: ConversationCell.elementMaxWidth,
utteranceText: utteranceButton.utteranceText,
onPress: performUserUtterance)
let messageContent = MessageContent.utteranceButton(button)
interactableItems.push(messageContent)
}
default: print("TODO")
}
}
return ConversationCellModel.init(message: utteredText,
multipleChoice: interactableItems)
}
public func performGreetingUtterance() {
self.addTypingIndicator()
performUtteranceOperation(utterance: "hi")
}
public func performUtteranceOperation(utterance: String) {
let context = UtteranceRequest.UserContext(cid: "1",
location: CLLocationCoordinate2D(),
storeID: "1",
timeZoneOffset: 0)
let request = UtteranceRequest(utterance: utterance,
context: context)
provider.conveyUtterance(request) { [weak self] result in
switch result {
case .success(let snippetResponse): do {
let snippetResponseTransformed = SnippetResponse.init(snippetResponse)
let ConversationCellModel = self?.parseAssistantSnippets(
snippets: snippetResponseTransformed.snippets)
if let model = ConversationCellModel {
self?.addMessageFromAssistant(interactableItems: model.multipleChoice,
utteredText: model.message)
}
}
case .failure(let error): return
}
}
}
}
class MultipleChoiceMessageCell: ConversationCell {
public func configure(with conversationItem: ConversationItem) {
switch conversationItem {
case let .multipleChoiceMessage(chatMessage, multipleChoice): do {
let isCellFromUser = chatMessage.metadata.isFromUser
let avatarBackgroundColor = chatMessage.metadata.avatarBackgroundColor
let avatarTintColor = chatMessage.metadata.avatarTintColor
let messageTextBackgroundColor = chatMessage.metadata.textContainerBackgroundColor
let messageTextColor = chatMessage.metadata.textColor
self.messageTextLabel.text = chatMessage.message
self.avatarImageView.image = chatMessage.metadata.avatarImage
self.messageTextContainer.backgroundColor = messageTextBackgroundColor
self.messageTextLabel.textColor = messageTextColor
self.avatarImageView.backgroundColor = avatarBackgroundColor
self.avatarImageView.tintColor = avatarTintColor
self.rightMessageHorizontalConstraint?.isActive = isCellFromUser
self.leftMessageHorizontalConstraint?.isActive = !isCellFromUser
self.rightAvatarHorizontalConstraint?.isActive = isCellFromUser
self.leftAvatarHorizontalConstraint?.isActive = !isCellFromUser
configureCellWith(interactablesSection: multipleChoice.multipleChoice.itemsContainer)
}
default:
logIncorrectMapping(expected: "message", actual: conversationItem)
}
}
func configureCellWith(interactablesSection: UIStackView) {
let stackViewTop = NSLayoutConstraint(
item: interactablesSection,
attribute: .top,
relatedBy: .equal,
toItem: self.messageTextContainer,
attribute: .bottom,
multiplier: 1,
constant: 10)
let stackViewLeading = NSLayoutConstraint(
item: interactablesSection,
attribute: .leading,
relatedBy: .equal,
toItem: self,
attribute: .leading,
multiplier: 1,
constant: ConversationCell.avatarMaxSize +
ConversationCell.messageContainerMaxLeadingMargin +
ConversationCell.avatarMaxMargin)
self.addAutoLayoutSubview(interactablesSection)
self.addConstraints([stackViewTop,
stackViewLeading])
}
}
class InteractableItem {
let contentView: UIView
var height: CGFloat
init() {
contentView = UIView()
height = 0
}
}
class CellPrimaryButton: InteractableItem {
let button: CorePrimaryButton
init(buttonTitle titleLabel: String, maxWidth: CGFloat) {
button = CorePrimaryButton()
button.setTitle(titleLabel, for: .normal)
button.setBackgroundColor(CoreColor.white, for: .normal)
button.setTitleColor(CoreColor.black, for: .normal)
button.layer.borderColor = CoreColor.black.cgColor
button.layer.borderWidth = 1
//button.becomeFirstResponder()
super.init()
contentView.isUserInteractionEnabled = true
// button.addTarget(self, action: #selector(didTapUtteranceButton), for: .touchUpInside)
setConstraints(maxWidth: maxWidth)
}
func setConstraints(maxWidth: CGFloat) {
let buttonHorizontal = NSLayoutConstraint(item: self.button,
attribute: .leading,
relatedBy: .equal,
toItem: self.contentView,
attribute: .leading,
multiplier: 1,
constant: 0)
let buttonWidth = NSLayoutConstraint(item: self.button,
attribute: .width,
relatedBy: .lessThanOrEqual,
toItem: nil,
attribute: .notAnAttribute,
multiplier: 1,
constant: maxWidth)
self.contentView.addConstraints([buttonHorizontal,
buttonWidth])
self.contentView.backgroundColor = UIColor.purple
self.height = self.button.intrinsicContentSize.height
self.contentView.addAutoLayoutSubview(self.button)
}
}
class UtteranceButton: CellPrimaryButton {
let utteranceText: String
let performUtterance: (String) -> Void
init(buttonTitle titleLabel: String,
maxWidth: CGFloat,
utteranceText: String,
onPress: @escaping (String) -> Void) {
self.utteranceText = utteranceText
self.performUtterance = onPress
super.init(buttonTitle: titleLabel, maxWidth: maxWidth)
}
}
最佳答案
尝试这种调用操作的方式。
UIApplication.shared.sendAction(#selector(didTapUtteranceButton), to: self, from: nil, for: nil)
而不是这个:
utteranceButton.button.addTarget(self, #selector(didTapUtteranceButton), for: .touchUpInside)
关于ios - UIButton 的 .touchUpInside 事件不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57222812/
nextButton 仅响应第一次单击。 我需要实现其他措施来识别更多点击吗? nextButton.TouchUpInside += (s, e) => { }; 最佳答案 设置 nextButto
我有以下代码: override func viewDidLoad() { super.viewDidLoad() ... signInButton =
我有一个带有图像的简单按钮,它的宽度和高度固定为 110。 所以问题是,只有当我点击按钮的前 20% 时,touchUpInside 事件才会触发,如果点击下方,则不会触发任何内容,甚至连按钮上的点击
我是 IOS 编程的新手,但奇怪的是,相同的代码在不同的类中工作,所以我不知道为什么它不起作用它在 Swift 3 中 class BottomMenu : NSObject{ //Conta
我在 Interface Builder 中设置了三个按钮,每个按钮都通过 touchUpInside 绑定(bind)到 btnSelection: - (IBAction)btnSelection
所以我有一个很大的UIButton,它是一个UIButtonTypeCustom,并且为UIControlEventTouchUpInside调用按钮目标。我的问题是如何确定 UIButton 中发生
我正在尝试使用 Swift 在 iOS 应用程序中按下按钮时自定义按钮的外观和感觉。我目前正在向其添加目标,包括 TouchDown 和 TouchUpInside,但按钮标签的标准“变暗”仍然保留。
UIButton TouchUpInSide 不工作,但在长按选择器对应的 TouchUpinside 被调用,TouchDown 工作正常。我谷歌了很多来找到答案,但没有运气。希望这个奇怪的问题得到
我有一个 UIScrollView,里面装满了我以编程方式创建的按钮。分页已启用,每当用户快速滚动页面时,他们总是会意外点击他们不是故意的按钮...我应该使用 TouchUpInside 还是这是我出
我正在以编程方式创建 UIButton 并设置它们的目标。大多数时候,TouchDown-TouchDragInside-TouchUpInside 链似乎正常工作,但如果我快速执行此事件链(每秒约
这是我的 Xib。我只是拖动了一个 UIButton 并更改了它的背景颜色。 我使用这段代码创建了一个半圆图层 let circlePath = UIBezierPath.init(arcCe
我的 ViewController 就像 public partial class TestView : MvxViewController { ...code here... } 然
有时,当您的项目包含非常不受管理的代码时,您无法弄清楚如何解决一个简单的问题,就会发生这种情况。在大多数情况下,调试器帮助我们到达根点开始,我只是想知道 xcode 调试器有多强大。当我使用一些像 O
我有一堆通过代码添加的 UILabel,如果用户的手指触摸内部(很像 IB 中的 UIButton 的 touchUpInside),我想对每个标签执行特定的操作。最好的方法是什么? 最佳答案 最简单
我可能在这里遗漏了一些东西,但是...... 我有一个 UIView 和几个 child (几个 UILabel 和 UIImageView)。当用户单击(点击)父 UIView 中的任何位置(UIV
我像往常一样在 IB 中连接了 touchUpInside,使用新的 Xcode,build设置为 iOS 5.0,但我的 iPhone 4(iOS6 发布之前的最新 iOS5)似乎没有响应。有人有同
我在最新的 Xcode 11.0 中遇到了奇怪的错误 我的代码: let button = ASAuthorizationAppleIDButton(type: .default, style: .b
我正在努力在运行时向 UICollectionViewCell 添加按钮,并在运行时根据其类型将按钮注册到事件。按钮的类型可以是例如话语按钮和操作按钮,并且两者都应该注册到单独的事件。 UI 元素的层
我将一些自定义类型的 UIButtons 实用地放置在自定义 View 中。 View 基本上是一个菜单。我在 View 的 .m 文件中使用以下代码生成按钮: -(void) generateBut
我有一个 UISwipeGestureRecognizer,它根据手势时突出显示的 UIButton 进行动画处理,它在 UIButton 时完成动画调用 TouchUpInside/TouchUpO
我是一名优秀的程序员,十分优秀!