SwiftUI误导性错误:“ Int”不可转换为“ CGFloat”

时间:2019-11-22 22:28:23

标签: ios swift xcode swiftui

我一直在行83 .offset(x:150,y:7)上得到'Int'不能转换为'CGFloat'的信息。如果我将数字包装在CGFloat()中,则相同的错误只会在其他地方出现。我知道这与程序中的控制流有关,但我无法确定位置。请帮助。

这是我的DateTracking.swift屏幕代码(出现错误)。

struct DateTracking: View {

    @State var recipes: [Recipe] = getRecipes()
    @State var filterRecipesBy: String = ""
    @State private var searchTerm: String = ""
    @State var sortedNames: [Item] =  getItemsSortedByNames()
    @State var sortedDays: [Item] =  getItemsSortedByDaysLeft()
    @State var arraySelection: Int = 0
    @State var sortBySelected: Bool = false
    @State var recipesShown: Bool = false
    @State var buttonShown: Bool = true


    var body: some View {

        NavigationView{

            ZStack{


                VStack{

                    SearchBar(text: $searchTerm)



                    if(self.arraySelection == 0){
                        QGrid(sortedDays.filter {
                                    self.searchTerm.isEmpty ? true :
                                        $0.imageName.localizedCaseInsensitiveContains(self.searchTerm)
                                }, columns: 3) { item in


                                    Button(action: {
                                        self.filterRecipesBy = item.imageName
                                        recipesShown.toggle()
                                    }){
                                        ListItem(imageName: item.imageName, daysLeft: item.daysLeft, redBackground: item.redBackground )
                                    }



                                }
                                //.background(Color(red: 239 / 255, green: 239 / 255, blue: 239 / 255))
                            }

                    if(self.arraySelection == 1){
                        QGrid(sortedNames.filter {
                                    self.searchTerm.isEmpty ? true :
                                        $0.imageName.localizedCaseInsensitiveContains(self.searchTerm)
                                }, columns: 3) { item in

                                    ListItem(imageName: item.imageName, daysLeft: item.daysLeft, redBackground: item.redBackground )

                                }
                            //.background(Color(red: 239 / 255, green: 239 / 255, blue: 239 / 255))
                        }

                    }



                if (self.sortBySelected == true){
                    VStack{

                        Button(action: {
                            self.sortBySelected.toggle()
                        }) {
                            Text("Done")

                        }
                        .offset(x: 150, y: 7)

                        Picker(selection: self.$arraySelection, label:
                            Text("Picker Name")){
                            Text("Expiry Date").tag(0)
                            Text("Names").tag(1)

                        }
                        .labelsHidden()


                    }
                    .frame(width:375)
                    .background(Color(red: 239 / 255, green: 239 / 255, blue: 239 / 255))
                    .offset(x: 0, y: 140)


                }

                if (self.recipesShown == true){
                    VStack(alignment: .center, spacing: 15) {

                        HStack {
                            Button(action: {self.recipesShown.toggle()
                            }){
                                Cross()
                            }
                            .offset(x: -70, y: 11)
                            Text(verbatim: "Recipes You Can Cook")
                                .font(.headline)
                                .fontWeight(.bold)
                                .padding(.top)
                                .offset(x: -50, y: 5)
                        }


                        RecipesVertical(recipes: self.recipes.filter($0.ingredients.contains(filterRecipesBy)))
                            .padding(.leading)

                            //.offset(x: 0, y: 140)
                    }
                    .frame(width:375, height:310, alignment: .center)
                    .background(Color.white)

                }

               /* if(buttonShown == true){
                    Button(action: {self.recipesShown = true
                        self.buttonShown = false
                    }){
                        Image("floatingrecipebutton")
                        .resizable()
                            .frame(width: 85, height: 85)
                            .shadow(radius: 10)

                                   }
                                       .offset(x: 125, y:200)
                }
               */





            }
                .navigationBarTitle(Text("Date Tracking"))
                .navigationBarItems(trailing:

                HStack{

                    Button(action: {
                        self.sortBySelected.toggle()
                        }){
                        Text("Sort by")
                    }

                        }


            )


        }

    }

}

2 个答案:

答案 0 :(得分:1)

在Swift中,如果没有专门的类型转换,则不能将Int分配给CGFloat。

在这种情况下,您可以更改为1,而不用写1.0。可以的。

答案 1 :(得分:0)

我相信您在这里得到的错误代码含糊不清,如果您尝试解决GCFloat,那么Xcode还会带来其他一些类似的问题。

语法可能与您有关(这对我来说只是一次),这是我分享的另一个youtube视频链接,其中实际问题有所不同,而Xcode显示了类似的错误。

https://www.youtube.com/watch?v=aLSzgZtOpG8&list=PLMRqhzcHGw1Z-lZaaun3A3mV9PbEfHANI&index=8

在22:30左右播放视频,您会遇到类似的GCFloat错误,而实际问题是VStack。