swift 3 .all已被弃用 - 拖放nstableview

时间:2017-05-31 10:24:56

标签: swift macos cocoa swift3

我有一个有效的body拖放解决方案。 但是我收到了代码部分的警告信息:

function prevSlide() {

    currentSlideIndex--;

    if(currentSlideIndex == (numSlides-1))
    {
        $("body").removeClass("shifted"); // remove the class from body
    }
    if (currentSlideIndex < 0) {
        currentSlideIndex = 0;
    }

    showSlide();
}

function nextSlide() {

    currentSlideIndex++;

    if (currentSlideIndex > numSlides) { 
        currentSlideIndex = numSlides;

        $("body").addClass("shifted"); // add the class to body

    }

    showSlide();
}
  

&#39;所有&#39;在OS X 10.10中已弃用

我必须使用而不是NSTableView

1 个答案:

答案 0 :(得分:2)

来自documentation

  

不推荐使用NSDragOperationAll常量。请改用every

因此,请使用:

return .every