Delete a Row from UITableView and Model-View-Controller

本文解释了如何在iOS开发中使用Model-View-Controller模式从UITableView中删除一行,包括理解MVC概念、实现步骤及代码示例。

As said in the previous post, I have another question to answer before moving onto Storyboard tutorial.

How can I delete a row from UITableView?

This is another common question people raised when building the Simple Table App. Again, it’s easier than you thought. But before jumping into the coding part, I have to introduce you the Model-View-Controller model, which is one of the most quoted design patterns for user interface programming.

You can’t escape from learning Model-View-Controller (MVC for short) if you’re serious about iOS programming. Not limited to iOS programming, MVC is commonly used and quoted in other programming languages such as Java. If you come from other programming backgrounds, MVC shouldn’t be new to you.

Delete Row Featured Image

Understanding Model-View-Controller

At the heart of MVC, and the idea that was the most influential to later frameworks, is what I call Separated Presentation. The idea behind Separated Presentation is to make a clear division between domain objects that model our perception of the real world, and presentation objects that are the GUI elements we see on the screen. Domain objects should be completely self contained and work without reference to the presentation, they should also be able to support multiple presentations, possibly simultaneously. This approach was also an important part of the Unix culture, and continues today allowing many applications to be manipulated through both a graphical and command-line interface.

By Martin Fowler

No matter what computer language you learn, one important concept that makes you become a better programmer is Separation of Concerns (SoC). The concept is pretty simple. Concerns are the different aspects of software functionality. The concept encourages developers to break a big feature or program into several areas of concern that each area has its own responsibility. The delegate pattern that is commonly found in iOS programming we explained in the earlier tutorial is one of the example of SoC.

Here, model-view-controller is another example of SoC. The core idea behind MVC is to clearly separate user interface into three areas (or groups of objects) that each area is responsible for a particular functionality. As the name suggests, MVC breaks an user interface into three parts:

Model – model is responsible for holding the data or any operations on the data. The model can be as simple as an array object that stores all the table data. Add, edit and delete are examples of the operations. In reality, the operations are usually known as business rules.

View – view manages the visual display of information. For example, UITableView shows information in a table view format.

Controller – controller is the bridge between model and view. It translates the user interaction from the view (e.g. tap) into appropriate action to be performed in the model. For example, user taps a delete button in the view and controller, in turn, triggers a delete operation in the model. After that, it also requests the view to refresh itself to reflect the update of the data model.

To better help you understand MVC, let’s use our Simple Table app as an example. The app displays a list of recipes in the table view. If you turn the concept into visual representation, here is how the table data is displayed:

MVC Model for Simple Table

MVC Model Illustrated Using Simple Table as Example

The recipe information that are stored in separate array objects is the Model. Each table row maps to an element of the recipe arrays. The UITableView object is the View that is the interface to be seen by the user. It’s responsible for all the visuals (e.g. color of the table rows, font size and type). The TableViewController acts as the bridge between the TableView and Recipe data model. When display table data, UITableView actually asks the Controller for the data to display, that in turn, picks the data from the model.

How To Delete a Row from UITableView

I hope you have a better understanding about Model-View-Controller. Now let’s move onto the coding part and see how we can delete a row from UITableView. To make thing simple, I’ll use the plain version of Simple Table app as an example.

If you thoroughly understand the MVC model, you probably have some ideas how to implement row deletion. There are three main things we need to do:

1. Write code to switch to edit mode for row deletion
2. Delete the corresponding table data from the model
3. Reload the table view in order to reflect the change of table data

1. Write code to switch to edit mode for row deletion

In iOS app, user normally swipes across a row to initiate the delete button. Recalled that we have adopted the UITableViewDataSource protocol, if you refer to the API doc, there is a method namedtableView:commitEditingStyle:forRowAtIndexPath. When user swipes across a row, the table view will check to see if the method has been implemented. If the method is found, the table view will automatically show the “Delete” button.

Simply add the following code to your table view app and run your app:

1
2
3
4
-  ( void )tableView : (UITableView  * )tableView commitEditingStyle : (UITableViewCellEditingStyle )editingStyle forRowAtIndexPath : ( NSIndexPath  * )indexPath
{

}

Even the method is empty and doesn’t perform anything, you’ll see the “Delete” button when you swipe across a row.

Swipe to Delete Table Row

Swipe to Delete a Table Row

2. Delete the corresponding table data from the model

The next thing is to add code to the method and remove the actual table data. Like other table view methods, it passes the indexPath as parameter that tells you the row number for the deletion. So you can make use of this information and remove the corresponding element from the data array.

In the original code of Simple Table App, we use NSArray to store the table data (which is the model). The problem of NSArray is it’s non-editable. That is, you can’t add/remove its content once the array is initialized. Alternatively, we’ll change the NSArray to NSMutableArray, which adds insertion and deletion operations:

1
2
3
4
5
6
7
8
9
10
11
@implementation SimpleTableViewController
{
     NSMutableArray  *tableData;
}

-  ( void )viewDidLoad
{
     [super viewDidLoad ];
     // Initialize table data
    tableData  =  [ NSMutableArray arrayWithObjects : @ "Egg Benedict"@ "Mushroom Risotto"@ "Full Breakfast"@ "Hamburger"@ "Ham and Egg Sandwich"@ "Creme Brelee"@ "White Chocolate Donut"@ "Starbucks Coffee"@ "Vegetable Curry"@ "Instant Noodle with Egg"@ "Noodle with BBQ Pork"@ "Japanese Noodle with Pork"@ "Green Tea"@ "Thai Shrimp Cake"@ "Angry Birds Cake"@ "Ham and Cheese Panini"nil ];
}

In the tableView:commitEditingStyle method, add the following code to remove the actual data from the array. Your method should look like this:

1
2
3
4
5
-  ( void )tableView : (UITableView  * )tableView commitEditingStyle : (UITableViewCellEditingStyle )editingStyle forRowAtIndexPath : ( NSIndexPath  * )indexPath
{
     // Remove the row from data model
     [tableData removeObjectAtIndex :indexPath.row ];
}

The NSMutableArray provides a number of operations for you to manipulate the content of an array. Here we utilize the “removeObjectAtIndex” method to remove a particular item from the array. You can try to run the app and delete a row. Oops! The app doesn’t work as expected.

It’s not a bug. The app does delete the item from the array. The reason why the deleted item still appears is the view hasn’t been refreshed to reflect the update of the data model.

3. Reload the table view

Therefore, once the underlying data is removed, we need to invoke “reloadData” method to request the table View to refresh. Here is the updated code:

1
2
3
4
5
6
7
8
-  ( void )tableView : (UITableView  * )tableView commitEditingStyle : (UITableViewCellEditingStyle )editingStyle forRowAtIndexPath : ( NSIndexPath  * )indexPath
{
     // Remove the row from data model
     [tableData removeObjectAtIndex :indexPath.row ];
    
     // Request table view to reload
     [tableView reloadData ];
}

Test Your App and Delete a Row

Try to run your app again and swipe to delete a row. You should be able to delete it.

Simple Table App - Row Deletion

Delete a Table Row in Simple Table App

As always, leave me comment to share your experience about the tutorial.


转载:http://www.appcoda.com/model-view-controller-delete-table-row-from-uitableview/

源码来自:https://pan.quark.cn/s/7a757c0c80ca 《在Neovim中运用Lua的详尽教程》在当代文本编辑器领域,Neovim凭借其卓越的性能、可扩展性以及高度可定制的特点,赢得了程序开发者的广泛青睐。 其中,Lua语言的融入更是为Neovim注入了强大的活力。 本指南将深入剖析如何在Neovim中高效地运用Lua进行配置和插件开发,助你充分发挥这一先进功能的潜力。 一、Lua为何成为Neovim的优选方案经典的Vim脚本语言(Vimscript)虽然功能完备,但其语法结构与现代化编程语言相比显得较为复杂。 与此形成对比的是,Lua是一种精简、轻量且性能卓越的脚本语言,具备易于掌握、易于集成的特点。 因此,Neovim选择Lua作为其核心扩展语言,使得配置和插件开发过程变得更加直观和便捷。 二、安装与设置在Neovim中启用Lua支持通常十分简便,因为Lua是Neovim的固有组件。 然而,为了获得最佳体验,我们建议升级至Neovim的最新版本。 可以通过`vim-plug`或`dein.vim`等包管理工具来安装和管理Lua插件。 三、Lua基础在着手编写Neovim的Lua配置之前,需要对Lua语言的基础语法有所掌握。 Lua支持变量、函数、控制流、表(类似于数组和键值对映射)等核心概念。 它的语法设计简洁明了,便于理解和应用。 例如,定义一个变量并赋值:```lualocal myVariable = "Hello, Neovim!"```四、Lua在Neovim中的实际应用1. 配置文件:Neovim的初始化文件`.vimrc`能够完全采用Lua语言编写,只需在文件首部声明`set runtimepath^=~/.config/nvim ini...
基于STM32 F4的永磁同步电机无位置传感器控制策略研究内容概要:本文围绕基于STM32 F4的永磁同步电机(PMSM)无位置传感器控制策略展开研究,重点探讨在不使用机械式位置传感器的情况下,如何通过算法实现对电机转子位置和速度的精确估算与控制。文中结合STM32 F4高性能微控制器平台,采用如滑模观测器(SMO)、扩展卡尔曼滤波(EKF)或高频注入法等先进观测技术,实现对电机反电动势或磁链的实时估算,进而完成磁场定向控制(FOC)。研究涵盖了控制算法设计、系统建模、仿真验证(可能使用Simulink)以及在嵌入式平台上的代码实现与实验测试,旨在提高电机驱动系统的可靠性、降低成本并增强环境适应性。; 适合人群:具备一定电机控制理论基础和嵌入式开发经验的电气工程、自动化及相关专业的研究生、科研人员及从事电机驱动开发的工程师;熟悉C语言和MATLAB/Simulink工具者更佳。; 使用场景及目标:①为永磁同步电机驱动系统在高端制造、新能源汽车、家用电器等领域提供无位置传感器解决方案的设计参考;②指导开发者在STM32平台上实现高性能FOC控制算法,掌握位置观测器的设计与调试方法;③推动电机控制技术向低成本、高可靠方向发展。; 其他说明:该研究强调理论与实践结合,不仅包含算法仿真,还涉及实际硬件平台的部署与测试,建议读者在学习过程中配合使用STM32开发板和PMSM电机进行实操验证,以深入理解控制策略的动态响应与鲁棒性问题。
先看效果: https://pan.quark.cn/s/21391ce66e01 企业级办公自动化系统,一般被称为OA(Office Automation)系统,是企业数字化进程中的关键构成部分,旨在增强组织内部的工作效能与协同水平。 本资源提供的企业级办公自动化系统包含了详尽的C#源代码,涉及多个技术领域,对于软件开发者而言是一份极具价值的参考资料。 接下来将具体介绍OA系统的核心特性、关键技术以及在实践操作中可能涉及的技术要点。 1. **系统构造** - **三层构造**:大型OA系统普遍采用典型的三层构造,包含表现层、业务逻辑层和数据访问层。 这种构造能够有效分离用户交互界面、业务处理过程和数据存储功能,从而提升系统的可维护性与可扩展性。 2. **C#编程语言** - **C#核心**:作为开发语言,C#具备丰富的类库和语法功能,支持面向对象编程,适用于开发复杂的企业级应用。 - **.NET Framework**:C#在.NET Framework环境中运行,该框架提供了大量的类库与服务,例如ASP.NET用于Web开发,Windows Forms用于桌面应用。 3. **控件应用** - **WinForms**或**WPF**:在客户端,可能会使用WinForms或WPF来设计用户界面,这两者提供了丰富的控件和可视化设计工具。 - **ASP.NET Web Forms/MVC**:对于Web应用,可能会使用ASP.NET的Web Forms或MVC模式来构建交互式页面。 4. **数据库操作** - **SQL Server**:大型OA系统通常采用关系型数据库管理系统,如SQL Server,用于存储和处理大量数据。 - **ORM框架**:如Ent...
这些代码写了什么:// // HomeDeviceManagementViewController.swift // OmadaSurveillance // // Created by LSL on 3/12/25. // import Cocoa //import OmadaSurveillanceCore @preconcurrency import WebKit import CocoaHTTPServer class HomeDeviceManagementViewController: TPHomeBaseViewController, WKNavigationDelegate { var webView = WKWebView(frame: .zero) var blurView = NSView() var isRetried:Bool = false let appcontext = TPAppContextFactory.shared() override func setupSubviews() { super.setupSubviews() NotificationCenter.default.addObserver(self, selector: #selector(handleLogout), name: .accountLogout, object: nil) blurView.wantsLayer = true blurView.layer?.backgroundColor = NSColor.tpBackground.cgColor TPBWaitingToastView.show(in: blurView, message: nil, style: .noMaskAndToast) if #available(macOS 13.3, *) { webView.isInspectable = true } webView.navigationDelegate = self view.addSubview(webView) view.addSubview(blurView) } override func setupText() { super.setupText() reloadWebView() } override func makeConstraints() { super.makeConstraints() webView.snp.makeConstraints({ make in make.edges.equalTo(view) }) blurView.snp.makeConstraints { make in make.edges.equalTo(view) } } func reloadWebView() { let currentWebLanguage = GetCloud2Locale() if !appcontext.isLogin { let request = URLRequest(url: URL(string: "https://localhost:\(sharedPort)/index.html?tempKey=1&language=\(currentWebLanguage)&vmsId=d50e22bb203147d094bd77e84e524539&type=local#/vms/device")!) self.webView.load(request) } else if appcontext.isCloudLogin && !appcontext.isVmsLogin { let request = URLRequest(url: URL(string: "https://localhost:\(sharedPort)/index.html?tempKey=1&language=\(currentWebLanguage)&vmsId=d50e22bb203147d094bd77e84e524539&type=cloud#/vms/device")!) self.webView.load(request) } else if appcontext.isCloudVMSLogin || appcontext.isCloudAccessVMSLogin { // 如果是企业版,获取tempkey,等到获取后tempkey后刷新webView if TPSSAppContext.shared.isCloudVMSLogin || TPSSAppContext.shared.isCloudAccessVMSLogin { let callback: TPGuardDeviceCloudCallback = { [weak self] response in if let self = self, let tempkey = response?["result"] as? String { let urlString = TPPlayerEnvironmentManager().VMS_CLOUD_DOMAIN + "?orgUrl=\(appcontext.accountInfo.vmsUserUrl)&tempKey=\(tempkey)&vmsId=\(appcontext.currentVMSId)&target=device&from=pcClient&version=1.0&theme=dark&language=\(currentWebLanguage)&capability=\(capability)&port=\(sharedPort)#/vms" let request = URLRequest(url: URL(string: urlString)!) webView.load(request) } } appcontext.requestVMSTempKey(callback: callback) } } } func webView(_ webView: WKWebView, didCommit navigation: WKNavigation!) { print("didCommit") blurView.isHidden = false } func webView(_ webView: WKWebView, didFinish navigation: WKNavigation!) { blurView.isHidden = true } // 页面加载完成,渲染失败,触发该回调 func webView(_ webView: WKWebView, didFail navigation: WKNavigation!, withError error: any Error) { if !isRetried { webView.reload() isRetried = true } } // 页面尚未开始加载,由于url无效、网络问题、服务器处理请求超时导致加载失败,触发该回调 func webView(_ webView: WKWebView, didFailProvisionalNavigation navigation: WKNavigation!, withError error: any Error) { if !isRetried { webView.reload() isRetried = true } } // 页面传输中断,触发该回调 func webViewWebContentProcessDidTerminate(_ webView: WKWebView) { if !isRetried { webView.reload() isRetried = true } } func webView(_ webView: WKWebView, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) { // 对需要信任的网页,拦截challenge并信任,否则webView无法加载 if challenge.protectionSpace.authenticationMethod == NSURLAuthenticationMethodServerTrust { if let serverTrust = challenge.protectionSpace.serverTrust { let credential = URLCredential(trust: serverTrust) completionHandler(.useCredential,credential) } else { completionHandler(.cancelAuthenticationChallenge,nil) } } else { completionHandler(.performDefaultHandling, nil) } } @objc func handleLogout() { if let url = URL(string: "https://index.html") { let urlRequest = URLRequest(url: url) webView.load(urlRequest) } } }
11-19
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值