Di chuyển và đổi hình
Hoàng Nguyễn
Đã trả lời thg 1 22, 2019 3:02 SA
Đoạn code bên trên mình không hiểu lắm việc bạn add image trong func animate(). Nếu next img trong một array thì logic của mình như sau
@objc func nextImg(_ sender: UIButton) {
if imgIndex == imgArr.count {
imgIndex = 0
}
imgIndex += 1
addImgSlide(ingIndex: imgIndex)
}
private func addImgSlide(ingIndex: Int) {
UIView.animate(withDuration: 0.5, delay: 0.0, options: .curveEaseOut, animations: {
self.imgView.frame.origin.x += 500 //di chuyển imgView qua phải 500.
}) { _ in
self.imgView.frame.origin.x -= 500 //Sau khi di chuyển qua phải 500 phải đưa imgVIew về vị trí cũ (di duyển qua trái 500).
self.imgView.image = UIImage(named: "\(self.imgIndex)")
}
}
Bạn tham khảo thêm source nhé: https://github.com/nguyentienhoang810/ImgSlide
+2
Làm thế nào để xoá đc khoảng trống này của CollectionCell với CollectionView?
Hoàng Nguyễn
Đã trả lời thg 10 26, 2018 2:52 SA
bạn kiểm tra lại frame của collectionVIew xem. Có thể nó cách top 1 đoạn.
+2
Lấy thứ trong tuần từ date hoặc date_epoch của file Json
Hoàng Nguyễn
Đã trả lời thg 8 29, 2018 2:31 SA
Bạn thử dùng dateFormatter nhé.
let epochTime: TimeInterval = 1535414400
let date = Date(timeIntervalSince1970: epochTime)
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "EEEE, dd-MM-yyyy"
let currentDateString: String = dateFormatter.string(from: date)
print(currentDateString)
+7
Tổ chức
Chưa có tổ chức nào.