網(wǎng)絡(luò)請求時写妥,我們一般加個提示框拳球,代表正在請求任務(wù)---如下
如果正常不用Rac的時候,這個問題都不是個事----不過珍特,也得通過閉包來處理情況(其他怎么處理的我見識淺祝峻,只會這一個)
下面,說一個用RAC處理這個網(wǎng)絡(luò)請求任務(wù)時扎筒,怎么做----PS:我的請求都是rac里面的 Action
首先在viewModel里面加個參數(shù)----代表是否在請求網(wǎng)絡(luò)
let isRequest = MutableProperty<Bool>(false)
然后在初始化viewModel里監(jiān)視請求action是否正在活動----一定要在這里監(jiān)視-----有幾個請求action莱找,就監(jiān)控幾個
struct DetailTaskCommonViewModel {
init(order: Order) {
self.order = order
refuseAction.executing.producer
.startWithNext { isStart in
//這里必須的判斷....若是直接寫成 self.isRequest.value = isStart的話,會報錯~~~我現(xiàn)在暫時還不知道什么原因
if isStart {
self.isRequest.value = true
} else {
self.isRequest.value = false
}
}
}
}
然后直接在VC里面監(jiān)視這個isRequest參數(shù)就行了----就是這么簡單嗜桌,不需要使用閉包以及狀態(tài)
viewModel.isRequest.producer
.observeOn(UIScheduler())
.startWithNext { [weak self] isRequest in
guard let strongSelf = self else {
return
}
if isRequest {
strongSelf.view.makeToastActivity(.Center)
} else {
strongSelf.view.hideToastActivity()
}
}
下面這個是我的網(wǎng)絡(luò)請求action----我使用的moya奥溺,具體怎么使用,你可以看我上兩篇的文章骨宠,是介紹Moya+RAC網(wǎng)絡(luò)請求怎么使用
private(set) lazy var refuseAction: Action<String, Bool, NetRequestError> = {
let action: Action<String, Bool, NetRequestError> = Action({ refuseMsg in
let producer: SignalProducer<CommonInfo?, NetRequestError> = NetHelper.sharedInstance.requestProvider
.request(RequestAPI.businessCheckOrder(id: self.order.id!, auditStatus: .refuse, auditMsg: refuseMsg))
.mapResponseToObject(CommonInfo)
return producer
.map({ _ in
return true
})
})
return action
}()
我上篇文章寫的那個action是不需要外界傳入?yún)?shù)的浮定,這次需要外界的參數(shù),使用apply這個方法层亿,然后直接start()就行了
detailV.refuseBtn.handleControlEvent(.TouchUpInside) {
AlertTool.show("拒絕理由", message: nil, placeholder: "請?zhí)顚懢芙^理由", detail: nil, keyType: nil, at: self, action: { [unowned self] (text) in
if let text = text {
self.viewModel.refuseAction.apply(text).start()
}
})
}
這里說一下使用apply這個方法時一定要注意桦卒,不能再進入VC的時候直接傳入輸入框的字符串,因為此時匿又,字符串為空方灾。。琳省。傳不進去任何值
下面也放下我自己經(jīng)常使用的UIAlertController的工具類----只使用ios8以上
struct AlertTool {
/**
顯示提示框
- parameter title: 標題
- parameter message: 信息
- parameter cancel: 取消按鈕
- parameter items: 標題數(shù)組
- parameter at: 所在控制器
- parameter action: 閉包迎吵,返回所選取的index
*/
static func show(title: String?, message: String?, cancel: String?, items: [String]?, at: UIViewController, action: (index: Int) -> Void) {
guard (cancel == nil && items == nil) == false else {
fatalError("至少需要一個按鈕標題")
}
var style: UIAlertControllerStyle = .Alert
if let _ = cancel where items == nil {
style = .Alert
} else if let _ = cancel, let items = items {
style = items.count > 1 ? .ActionSheet : .Alert
} else if let items = items where cancel == nil {
style = items.count > 2 ? .ActionSheet : .Alert
}
let alert = UIAlertController.init(title: title, message: message, preferredStyle: style)
if let items = items {
for (index, item) in items.enumerate() {
let action = UIAlertAction(title: item, style: .Default, handler: { (action1) in
action(index: index)
})
alert.addAction(action)
}
}
if let cancel = cancel {
let action = UIAlertAction(title: cancel, style: .Cancel, handler: nil)
alert.addAction(action)
}
at.presentViewController(alert, animated: true, completion: nil)
}
/**
帶輸入框的提示框
- parameter title: 標題
- parameter message: 信息
- parameter cancel: 取消標題
- parameter ok: 確定標題
- parameter placeholder: 輸入框的占位標題
- parameter detail: 輸入框右側(cè)的標題
- parameter keyType: keyType
- parameter at: 所在控制器
- parameter action: 閉包,返回輸入框內(nèi)容
*/
static func show(title: String?, message: String?, placeholder: String, detail: String?,keyType: UIKeyboardType?,at: UIViewController, action: (text: String?) -> Void) {
let style: UIAlertControllerStyle = .Alert
let alert = UIAlertController.init(title: title, message: message, preferredStyle: style)
var textF = UITextField()
alert.addTextFieldWithConfigurationHandler { (tf) in
tf.placeholder = placeholder
if let key = keyType {
tf.keyboardType = key
}
if let detail = detail {
let detailL = UILabel(frame: CGRect(x: 0, y: 0, width: 30, height: 50))
detailL.text = detail
detailL.textAlignment = .Right
tf.rightView = detailL
tf.rightViewMode = .Always
}
textF = tf
}
let cancelAction = UIAlertAction(title: "取消", style: .Cancel, handler: nil)
let okAction = UIAlertAction(title: "確定", style: .Destructive) { (action1) in
action(text: textF.text)
}
alert.addAction(okAction)
alert.addAction(cancelAction)
at.presentViewController(alert, animated: true, completion: nil)
}
}
使用的時候直接AlertTool.show+參數(shù)就行了