- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我在尝试推送 View Controller 时收到此错误。我从表格单元格中附加了一个 segue,pushViewController:animated:在现有的过渡或演示发生时调用;导航堆栈将不会更新。
class PlaylistsViewController: UIViewController, UITableViewDelegate, UITableViewDataSource, UIGestureRecognizerDelegate {
let ItemRecordName = "Playlists"
var playlists = NSMutableArray()
@IBOutlet var tableView: UITableView?
var cloudm = CloudManager()
var container: CKContainer?
var publicDatabase: CKDatabase?
var edgePan = UIScreenEdgePanGestureRecognizer()
override func viewDidLoad() {
super.viewDidLoad()
self.setUpMenu()
container = CKContainer.defaultContainer()
publicDatabase = container?.privateCloudDatabase
self.tableView!.contentInset = UIEdgeInsetsMake(64, 0, 0, 0)
}
func setUpMenu() {
self.slidingViewController().topViewAnchoredGesture = ECSlidingViewControllerAnchoredGesture.Panning | ECSlidingViewControllerAnchoredGesture.Tapping
//self.navigationController.view.addGestureRecognizer(self.slidingViewController().panGesture)
edgePan = UIScreenEdgePanGestureRecognizer(target: self, action: "menuButtonTapped")
edgePan.edges = UIRectEdge.Left
edgePan.delegate = self
self.navigationController.view.addGestureRecognizer(edgePan)
self.navigationController.navigationBar.translucent = true
let icon = FAKIonIcons.naviconIconWithSize(40)
icon.addAttribute(NSForegroundColorAttributeName, value: UIColor.whiteColor())
let iconImage = icon.imageWithSize(CGSizeMake(40, 40))
let plusicon = FAKIonIcons.ios7PlusEmptyIconWithSize(30)
plusicon.addAttribute(NSForegroundColorAttributeName, value: UIColor.whiteColor())
let plusiconImage = plusicon.imageWithSize(CGSizeMake(30, 30))
let barButton = UIBarButtonItem(image: iconImage, style: UIBarButtonItemStyle.Plain, target: self, action: "menuButtonTapped")
let barButton2 = UIBarButtonItem(image: plusiconImage, style: UIBarButtonItemStyle.Plain, target: self, action: "openNameForPlaylist")
barButton2.tag = 1
let negativeSpacer = UIBarButtonItem(barButtonSystemItem: UIBarButtonSystemItem.FixedSpace, target: nil, action: nil)
let negativeSpacer2 = UIBarButtonItem(barButtonSystemItem: UIBarButtonSystemItem.FixedSpace, target: nil, action: nil)
negativeSpacer.width = -10
negativeSpacer2.width = 0.0
self.navigationItem.leftBarButtonItems = NSArray(objects: negativeSpacer, barButton)
self.navigationItem.rightBarButtonItems = NSArray(objects: negativeSpacer2, barButton2)
}
override func viewDidAppear(animated: Bool) {
self.getPlaylists()
}
func menuButtonTapped () {
self.slidingViewController().anchorTopViewToRightAnimated(true)
}
func getPlaylists() {
cloudm.fetchPlaylistNames("Playlists", completionHandler: {(records: NSMutableArray) -> Void in
if records.count > 0 {
println("got Playlists")
self.playlists = records
self.tableView?.reloadData()
//self.noFoodLabelAlpa(0, withDuration: 0, withDelay: 0)
} else {
println("dont got Playlists")
//self.noFoodLabelAlpa(1, withDuration: 1, withDelay: 1.8)
}
})
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
func openNameForPlaylist() {
var alert = UIAlertView(title: "Playlist Name", message: "Please choose a name for your Playlist", delegate: self, cancelButtonTitle: "Done")
alert.alertViewStyle = UIAlertViewStyle.PlainTextInput
alert.show()
}
func alertView(alertView:UIAlertView, clickedButtonAtIndex buttonIndex: NSInteger){
println(alertView.textFieldAtIndex(0).text)
addPlaylist(alertView.textFieldAtIndex(0).text)
}
func addPlaylist(name: String) {
if playlists.count == 10 {
var alert = UIAlertView(title: "Playlist is full", message: "You've reached the maximum number of songs in your playlist, to add more please remove some", delegate: self, cancelButtonTitle: "ok")
alert.show()
} else {
println("playlist count = \(self.playlists.count)")
var newRecord: CKRecord = CKRecord(recordType: ItemRecordName)
//var playlistName = "Playlist \(self.playlists.count + 1)"
newRecord.setObject(name, forKey: "playlistName")
self.cloudm.saveRecord(newRecord)
self.playlists.insertObject(newRecord, atIndex: 0)
//self.playlists.addObject(newRecord)
self.playlists.sortUsingDescriptors([NSSortDescriptor(key: "playlistName", ascending: true)])
var indexPath = NSIndexPath(forRow: 0, inSection: 0)
self.tableView?.insertRowsAtIndexPaths([indexPath], withRowAnimation: UITableViewRowAnimation.Automatic)
}
}
func numberOfSectionsInTableView(tableView: UITableView!) -> Int {
return 1;
}
func tableView(tableView: UITableView!, heightForHeaderInSection section: Int) -> Int {
return 1
}
func tableView(tableView: UITableView!, viewForFooterInSection section: Int) -> UIView {
var view = UIView(frame: CGRect.zeroRect)
return view
}
func tableView(tableView: UITableView!, heightForFootInSection section: Int) -> Int {
return 1
}
func tableView(tableView: UITableView!, numberOfRowsInSection section: Int) -> Int {
return playlists.count
}
func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell! {
let CellIndentifier: NSString = "playlistCell"
var cell : UITableViewCell = tableView.dequeueReusableCellWithIdentifier(CellIndentifier) as UITableViewCell
var selectedView = UIView(frame: CGRectMake(0,0,cell.contentView.frame.size.width, cell.contentView.frame.size.height))
cell.selectedBackgroundView = selectedView
cell.backgroundColor = UIColor.clearColor()
var records: CKRecord = self.playlists[indexPath.row] as CKRecord
var playlist:String = records.objectForKey("playlistName") as String
println("Playlists are \(playlist)")
cell.textLabel.text = playlist
return cell
}
func tableView(tableView: UITableView?, canEditRowAtIndexPath indexPath: NSIndexPath?) -> Bool {
// Return NO if you do not want the specified item to be editable.
return true
}
func tableView(tableView: UITableView!, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath!) {
if editingStyle == .Delete {
// Delete the row from the data source
self.cloudm.deleteRecord(self.playlists[indexPath.row] as CKRecord)
self.playlists.removeObjectAtIndex(indexPath.row)
tableView.deleteRowsAtIndexPaths([indexPath], withRowAnimation: .Fade)
}
}
func tableView(tableView: UITableView!, didEndEditingRowAtIndexPath indexPath: NSIndexPath!) {
if playlists.count > 0 {
//self.noFoodLabelAlpa(0, withDuration: 0, withDelay: 0)
} else {
//self.noFoodLabelAlpa(1, withDuration: 1, withDelay: 0)
}
}
override func prepareForSegue(segue: UIStoryboardSegue!, sender: AnyObject!) {
var indexPath = self.tableView!.indexPathForSelectedRow()
var record: CKRecord = self.playlists[indexPath.row] as CKRecord
let playlistOpen: PlaylistsOpenViewController = segue.destinationViewController as PlaylistsOpenViewController
playlistOpen.parentRecordID = record.recordID.recordName
playlistOpen.cloudm = self.cloudm
}
更新:好的,我已经安装了 xcode beta 5,现在模拟器和我的手机都收到了这个错误,这个错误在此版本之前不存在。有什么想法吗?
最佳答案
这似乎是您正在使用的 ECSlidingView
中的错误。查看他们的 issue tracker .有一种解决方法可以在某些情况下提供帮助,但恐怕在这里对您没有帮助。我们现在所能做的就是等待补丁或等待 Apple 修复他们在 Beta 5 中破坏的内容。
我决定把所有与 ECSliding 相关的东西都扔到窗外,重新开始使用 SWRevealViewController .切换过程非常轻松,我花了大约一个小时的时间来完成一个大约 20K LOC 的应用程序。这是我向遇到此问题的任何人推荐的内容。
现在有一个修复合并到 master 分支中。我也把它贴在这里供引用,它是由 SpruceGoose429 提供的,由 fcy 在 Github 上附加:
In
ECSlidingViewController.m
replace the following code:
- (id<UIViewControllerTransitionCoordinator>)transitionCoordinator {
return self;
}
With this block:
- (id<UIViewControllerTransitionCoordinator>)transitionCoordinator
{
// Return self if a transition is in progress (we're the transition coordinator).
// Otherwise, defer to super.
return ((_transitionInProgress)? self: [super transitionCoordinator]);
}
正如我提到的,这个修复在 ECSlidingViewController 的 2.0.3 版中。
关于ios - 推送 View : while an existing transition or presentation is occurring; the navigation stack will not be updated,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25131737/
命令 npm update 有什么区别和包裹npm-check-updates ?使用后者是否完全安全? 执行后好像是npm update并非所有软件包都已更新,因此似乎不完整。许多其他 popula
我有使用 ExpressJS 和 ORM Sequelize 的 API。我正在尝试使用 Sequelize 中的 update() 方法进行更新。默认情况下,it 方法将返回更新的行数。但我希望结果
关于如何更新 rubygems 有点困惑。过程不断变化(或者至少我从互联网上得到了相互矛盾的信息)。 $ gem outdated rubygems-update (1.8.10 < 1.8.11
我正在使用 webpack-dev-server处于开发模式( watch )。每次服务器重新加载时,一些 json 和 js 文件都会挤满我的构建目录,如下所示:'hash'.hot-update.
Mamp Pro 的当前版本是 5.04 (15996)。可用更新窗口显示“Mamp 5.0.0 > 5.1。更新失败,并显示一条消息:错误:无法验证更新。请确保您使用的是安全网络,然后重试。” 更新
我想在浏览量增加时更新时间戳“lastpageview_at”。我想我已经接近了,但我总是遇到语法错误,有人知道为什么或有其他解决方案吗? 我的触发器: CREATE TRIGGER Update_l
我正在执行 SELECT ... FOR UPDATE 以锁定一条记录,然后进行一些计算,然后进行实际的 UPDATE。我正在处理 InnoDB 数据库。 但是计算可能会以我不想执行 UPDATE 的
我需要在表更新时进行一些更新和插入以强制执行正确的数据。将 UPDATE 语句放入触发器中会导致某种“循环”吗? 谢谢! 最佳答案 更新触发器中的目标表将使触发器再次触发。 您可以使用 TRIGGER
这是我的布局 当我点击链接更新时,该链接应该打开和关闭renderComment bool
我有一个包含两件事的 Angular 范围: 一个包含 10k 行的巨型表格,需要一秒钟才能渲染 一些小的额外信息位于固定的覆盖标题栏中 根据您向下滚动页面/表格的距离,我必须更新标题中的小信息位之一
标题几乎已经说明了一切。 IF NEW.variance <> 0 THEN (kill update) END IF 这可能吗? 最佳答案 查看手册 (http://dev.mysql.com/do
我有几个表,我想强制执行版本控制,并且有一个生效日期和生效日期。每当应用程序或用户向该表写入更新时,我希望它重定向到两个全新的命令:更新目标记录,以便 EFFECTIVE_TO 日期填充当前日期和时间
我正在使用 Shopware,一件奇怪的事情让我抓狂 :( 所以我将首先解释问题是什么。 除了普通商品外,还有多种款式的商品,例如不同尺码的衬衫。这是 XS、S、M、L 和/或不同颜色的同一商品……但
寻求帮助制作 mysql 触发器。我当前的代码无法按预期工作。我想做的是,如果表A中的字段A被修改,则将字段A复制到表A中的字段B。 当前代码如下所示: BEGIN IF new.set_id=301
以下查询(来自此处Postgres SQL SELECT and UPDATE behaving differently) update fromemailaddress set call =
我想使用 D3 使用以下数据创建一个列表: var dataSet = [ { label: 'a', value: 10}, { label: 'b', value: 20},
哪个更好,先进行选择,然后进行更新。或者更确切地说,像这样合而为一: UPDATE items set status = 'NEW' where itemid in (1,2,3,
对于 eloquent model events,updating 和 updated 之间有什么区别? ? 我的猜测是 updating 在模型更新之前触发,而 updated 在模型更新之后触发。
我有一个对象数组(我们称之为arr)。在我的组件输入之一的 (change) 方法中,我修改了这些对象的属性之一,但在 View (*ngFor) 中没有任何变化。我读到 Angular2 变化检测不
我正在尝试使用 d3.js 构建水平日历时间线。主要目标是突出显示用户的假期和假期。 http://jsbin.com/ceperavu/2/edit?css,js,output 我首先从“开始”日期
我是一名优秀的程序员,十分优秀!