Giter Site home page Giter Site logo

Comments (6)

zjfjack avatar zjfjack commented on May 9, 2024

Hi, @nicolettemanas

All the grids you see are drawn by lines. If you want to change the background color of a column, you should add DecorationView in FlowLayout. I found few lines of code from WRCalendarView, which is exactly what you want for a whole column background.

// In WeekView class
flowLayout.register(WRTodayBackground.self,
                            forDecorationViewOfKind: DecorationViewKinds.todayBackground)

// In FlowLayout class
func layoutTodayBackgroundAttributes(section: Int, sectionX: CGFloat, calendarStartY: CGFloat, sectionHeight: CGFloat) {
        let currentComponents = daysForSection(section)
        
        if (currentTimeComponents.year == currentComponents.year &&
            currentTimeComponents.month == currentComponents.month &&
            currentTimeComponents.day == currentComponents.day) {
            var attributes: UICollectionViewLayoutAttributes
            (attributes, todayBackgroundAttributes) =
                layoutAttributesForDecorationView(at: IndexPath(item: 0, section: 0),
                                                  ofKind: DecorationViewKinds.todayBackground,
                                                  withItemCache: todayBackgroundAttributes)
            attributes.frame = CGRect(x: sectionX, y: 0, width: sectionWidth, height: sectionHeight + calendarStartY)
            attributes.zIndex = zIndexForElementKind(DecorationViewKinds.todayBackground)
        }
    }

If you are not using pods, you can simply refer to his WRCalendarView and add some codes into my library.

But if you are using pods, for me, I am thinking how to add this feature into the project and easy for you guys to use for all situations. For example, I want any gird, any column or any row background view can be customised. It is not simple to achieve this and I don't have enough time these days. If you do have any suggestions or questions, you can let me know.

Hope I can help you, thanks.
Jeff

from jzcalendarweekview.

nicolettemanas avatar nicolettemanas commented on May 9, 2024

Thanks! I forked your repo and edited it from there. Closing this now.

from jzcalendarweekview.

zjfjack avatar zjfjack commented on May 9, 2024

You are welcome.

from jzcalendarweekview.

rishbaranwal avatar rishbaranwal commented on May 9, 2024

hey @nicolettemanas , can you please let me know the changes that you made, I want to provide custom background colour to Hour Grid Divisions.

from jzcalendarweekview.

nicolettemanas avatar nicolettemanas commented on May 9, 2024

hi @rishbaranwal

Sure, here you go

from jzcalendarweekview.

rishbaranwal avatar rishbaranwal commented on May 9, 2024

hi @nicolettemanas @zjfjack , I want to provide colour to specific time section of a day, can you please help me here.

from jzcalendarweekview.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.