Remote tip still displayed when controller pressed

I have an application with a UINavcontroller under a tab bar controller. To create the navigation model that I want, I push the UIView container object onto the stack to control additional views (thanks Frank). When I created the container class, a related nib file was created with it. I used this nib file at first, but it turned out that it is better not to do this. So I deleted nib (and chose "also move to trash"). The problem is that it still appears when I push its view controller onto the stack. I tried to clear the cache in xcode and restart xcode. What am I missing?

+3
source share
2 answers

I assume that a buildcopy may be left in the application bundle that is created in the directory . Try to execute Clean Alland compile again.

+1
source

1) Stop the project and run Product-> Clean (or shortcut <Shift>+ <Command>+ <K>)

2) Right-click the project name in the root of the groups and files tree on the left side of your project window and select "Open in Finder". In the Finder window, locate the Build folder and delete it.

3) If still not working, search for your xib in the Goups tree and in each branch from your environment (Finder-> File-> Find ...).

0
source

Source: https://habr.com/ru/post/1747234/


All Articles