- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
向下滚动到第一个类 (MainProjectScene) 的最后一个方法。 “PressedSaveAs”函数就是我要解决的方法,和截图错误的方法是一样的。
当用户按下按钮时,文本输入将出现,当您单击“确定”时,它会将用户输入的文本分配给表格的行/单元格的标题。
错误截图:enter image description here
我想分配给行/单元格标题的文本字段的屏幕截图(这将在我按下按钮时发生,因此功能在 PressedSaveAs 方法中): enter image description here
import UIKit
weak var FirstFileNameTextField: UILabel!
class MainProjectScene: UIViewController
{
var row: Row?
override func viewWillAppear(animated: Bool)
{
if let r = row
{
row!.FileName = r.FileName
row!.QuartzImage = r.QuartzImage
}
}
override func viewDidLoad()
{
super.viewDidLoad()
// FacebookButton.addTarget(self, action: "didTapFacebook", forControlEvents: .TouchUpInside)
}
@IBOutlet weak var NewFileButton: UIButton!
@IBOutlet weak var TwoDQuartzButton: UIButton!
@IBOutlet weak var YouTubeButton: UIButton!
@IBOutlet weak var TwitterButton: UIButton!
@IBOutlet weak var OpenFileButton: UIButton!
@IBOutlet weak var SnapChatButton: UIButton!
@IBOutlet weak var FacebookButton: UIButton!
@IBAction func PressedTwoDQuartzButton(sender: UIButton) {
}
@IBAction func PressedSnapchatButton(sender: UIButton){
UIApplication.sharedApplication().openURL(NSURL(string: "https://www.snapchat.com/")!)
}
@IBAction func PressedYouTubeButton(sender: UIButton) {
UIApplication.sharedApplication().openURL(NSURL(string: "https://www.youtube.com/")!)
}
@IBOutlet weak var InstagramButton: UIButton!
@IBAction func PressedFacebookButton(sender: UIButton) {
UIApplication.sharedApplication().openURL(NSURL(string: "http://www.facebook.com")!)
}
@IBAction func PressedInstagramButton(sender: UIButton) {
UIApplication.sharedApplication().openURL(NSURL(string: "https://www.instagram.com/")!)
}
@IBAction func PressedTwitterButton(sender: UIButton) {
UIApplication.sharedApplication().openURL(NSURL(string: "https://twitter.com/")!)
}
@IBOutlet weak var SaveAsButton: UIButton!
@IBAction func PressedSaveAs(sender: UIButton) //this is the save as function that I would like to know how to change
{
//1. Create the alert controller.
var alert = UIAlertController(title: "Name/rename your file:", message: "Enter a filename to name/rename and save your file", preferredStyle: .Alert)
//2. Add the text field. You can configure it however you need.
alert.addTextFieldWithConfigurationHandler({ (textField) -> Void in
textField.text = "Your file name"
})
alert.addAction(UIAlertAction(title: "OK", style: .Default, handler:
{
(action) -> Void in
let textField = alert.textFields![0] as UITextField
print("Text field: \(textField.text)")
// rows.cell.textLabel?.text = textField.text
CurrentFileName = textField.text!
rows[indexPath.row].FileName = CurrentFileName
}))
// 4. Present the alert.
self.presentViewController(alert, animated: true, completion: nil)
// rows[indexPath.row].FileName = rows.cell.textLabel?.text
// rows[i] = textField.text
}
}
行类
import UIKit
let rows = [
Row(FileName: "File slot 1",
QuartzImage: "Image slot 1"),
Row(FileName: "File slot 2",
QuartzImage: "Image slot 2"),
Row(FileName: "File slot 3",
QuartzImage: "Image slot 3"),
Row(FileName: "File slot 4",
QuartzImage: "Image slot 4"),
Row(FileName: "File slot 5",
QuartzImage: "Image slot 5"),
Row(FileName: "File slot 6",
QuartzImage: "Image slot 6"),
Row(FileName: "File slot 7",
QuartzImage: "Image slot 7"),
Row(FileName: "File slot 8",
QuartzImage: "Image slot 8"),
Row(FileName: "File slot 9",
QuartzImage: "Image slot 9"),
Row(FileName: "File slot 10",
QuartzImage: "Image slot 10"),
Row(FileName: "File slot 11",
QuartzImage: "Image slot 11"),
Row(FileName: "File slot 12",
QuartzImage: "Image slot 12")]
//update contents of the array
//each of the table cell will use the stored information in the array
//
class Row
{
///// enum Type: String {
// }
var FileName: String
var QuartzImage: String
// var type: Type
// var shortDescription: String
// var longDescription: String
init(FileName: String, QuartzImage: String) {
self.FileName = FileName
self.QuartzImage = QuartzImage
}
}
行 TableView Controller 类
import UIKit
var CurrentIndex = 0
var CurrentFileName = ""
class RowTableViewController: UITableViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Uncomment the following line to preserve selection between presentations
// self.clearsSelectionOnViewWillAppear = false
// Uncomment the following line to display an Edit button in the navigation bar for this view controller.
// self.navigationItem.rightBarButtonItem = self.editButtonItem()
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
// MARK: - Table view data source
override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
// #warning Incomplete implementation, return the number of sections
return 1
}
override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
// #warning Incomplete implementation, return the number of rows
return rows.count
}
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("FileSlot", forIndexPath: indexPath)
let filename = rows[indexPath.row].FileName
print(filename)
cell.textLabel?.text = filename
return cell
}
override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath)
{
let title = "List of Files"
let message = "You have selected \(rows[indexPath.row].FileName)"
// CurrentIndex = rows[didSelectRowAtIndexPath.row]
var i = 0
CurrentIndex = indexPath.row
CurrentFileName = rows[indexPath.row].FileName
let alertController = UIAlertController(title: title, message: message, preferredStyle: .Alert)
let okayAction = UIAlertAction(title: "Okay", style: .Default, handler: nil)
alertController.addAction(okayAction)
presentViewController(alertController, animated: true, completion: nil)
self.tableView.deselectRowAtIndexPath(indexPath, animated: true)
}
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
// Get the new view controller using [segue destinationViewController].
// Pass the selected object to the new view controller.
if let detailViewController = segue.destinationViewController as? MainProjectScene {
if let cell = sender as? UITableViewCell {
if let indexPath = self.tableView.indexPathForCell(cell) {
detailViewController.row = rows[indexPath.row]
}
}
}
// let index = RowTableViewController.indexPathForSelectedRow()
//let currentCell = RowTableViewController.cellForRowAtIndexPath(RowTableViewController.indexPath) as UITableViewCell
//println(currentCell.textLabel!.text)
}
/*
// Override to support conditional editing of the table view.
override func tableView(tableView: UITableView, canEditRowAtIndexPath indexPath: NSIndexPath) -> Bool {
// Return false if you do not want the specified item to be editable.
return true
}
*/
/*
// Override to support editing the table view.
override func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) {
if editingStyle == .Delete {
// Delete the row from the data source
tableView.deleteRowsAtIndexPaths([indexPath], withRowAnimation: .Fade)
} else if editingStyle == .Insert {
// Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
}
}
*/
/*
// Override to support rearranging the table view.
override func tableView(tableView: UITableView, moveRowAtIndexPath fromIndexPath: NSIndexPath, toIndexPath: NSIndexPath) {
}
*/
/*
// Override to support conditional rearranging of the table view.
override func tableView(tableView: UITableView, canMoveRowAtIndexPath indexPath: NSIndexPath) -> Bool {
// Return false if you do not want the item to be re-orderable.
return true
}
}
最佳答案
我认为 indexPath 的范围是问题所在,您需要使用
weakSelf.indexPath (if a class level variable)
这是因为您使用的闭包(或 block )与方法中的其余代码具有不同的作用域。您需要使用 weakSelf 而不是简单的“self”的原因。是为了避免保留循环,可以找到对此进行解释的文档 here
关于ios - swift xcode : Changing the name/title of a row/cell inside a Table by a text input after pressing a button,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35927646/
我在按下按钮后制作了一个扩展表单,但现在我也想添加 Enter 按键,但我不知道如何操作。也许有人可以帮助我!? 代码 $(document).ready( function() {
基本上我使用的是 z-index,通过单击按钮,它应该拍摄背面照片并将其置于正面,反之亦然。我目前正试图让按钮正常工作。 Lab 5, Part 1
这个问题已经有答案了: AlertDialog OnBackPressed() Not Working Properly (3 个回答) 已关闭 4 年前。 我想实现抽屉导航后按对话框上的对话框后按。
我有一个点击功能,长按同一个按钮。实现了长按事件,但我需要分别找到按钮 UP_EVENT 和 DOWN_EVENTS。如何使用 OnLongClickListener 实现 View.OnLongC
我需要简单地检测每时每刻在我的 Qt5/C++ 应用程序中何时按下或释放右键。 到目前为止,我已经编写了这些函数: void test::mousePressEvent(QMouseEvent *ev
我有一个输入框和它下面的“添加”按钮。添加按钮基本上所做的是,它将一个新的输入字段附加到文档中。我在这里尝试做的是,在输入字段中键入时,如果检测到返回键按下,调用添加新输入字段的函数将被触发,与单击添
我正在使用 Java swing 和 Matlab 开发一个项目。我有一个带有 2 个按钮“运行”和“暂停”的 GUI。我正在使用另外一个 java 程序 (Matlabjavaprog.java),
目前,我有一个带有 9 补丁图像作为边框的自定义 View 。 该自定义 View 在 LinearLayout 中放置了三次,所以它看起来像这样: +------------------------
我正打算用一个 TButtonedEdit 控件替换 TEdit + TButton 组合,但当我尝试测试它时,我发现无法使用键盘“按下”(右)按钮。 我尝试了 Alt+Enter、Alt+Down、
您好,我在模糊()和回车键上执行相同的代码时遇到了一些麻烦。我使用以下代码: $(".formatted-date").bind('blur keyup',function(e) { if
这是一个关于android java编程的一般问题。 有没有办法(当手机锁定时)检测是否按下主页按钮几秒钟? 最佳答案 由于不需要硬件按钮,因此并非所有手机都可以使用主页。 关于java - 手机锁定
我在 Pane 中有一个 ImageView,并且该 Pane 已设置 MouseEventHandler 来执行一些操作。 ImageView 的图像在 CSS 文件中定义如下: .imageVie
我需要以编程方式从交互功能内部按下一个键。以下是我目前所掌握的内容的概要: (defun answer-to-life-the-universe-and-everything () (intera
我正在尝试做一个简单的选择器。 这是我的选择器 xml 代码,名为“butt.xml”: 这就是布局: 这就是代码: ImageButton ib; @Override public vo
基本上我是在调用 API 来检索慈善机构列表。然后我将所有这些放在一个数组中并动态设置 UIButtons。 然后我允许用户选择慈善机构并显示包含该索引数据的 View 。 我的循环在这里; for
让我解释更多细节。 首先;我知道如果用户按回键并返回上一个 Activity ,则上一个 Activity 会正确触发 onResume 方法。这没关系。 我的应用程序中有一个根 Activity ,
我正在使用 BootStrap Group Button 类,发现在我自己的代码中,如果按下一个按钮,该按钮将在几秒钟后弹出.... 如何确保它保持按下状态? Stage
我有一个 ListView,当通过 onItemClick 监听器单击项目行时,它会打开另一个 Activity 。 我希望该行从被点击到屏幕切换到新 Activity 时一直保持按下状态。我认为这对
我正在使用 Hammer.JS 来检查事件。我想长按做一些事情。所以我正在使用像这样的锤子新闻事件 var mc = new Hammer(can); mc.on("press", function
我构建了一个 Swing GUI 应用程序,除了一些细节之外,一切都运行良好:我有两个按钮,每个按钮都附加了一个鼠标单击事件。问题是,当我单击它们时,它们保持“按下”状态:其他一切都正常,但看到这两个
我是一名优秀的程序员,十分优秀!