diff --git a/docs/devices/ios/content-view.md b/docs/devices/ios/content-view.md
deleted file mode 100644
index c86b1e3..0000000
--- a/docs/devices/ios/content-view.md
+++ /dev/null
@@ -1,277 +0,0 @@
-# ContentView
-
-A page of the app.
-
-## Views, Functions & Variables
-
-`@State` allows the view to respond to every change of the annotated variable. This variables get initialized by the view in which they belong and are not "received" from external objects.  
-SwiftUI memorizes internally the value of the `@State` property and updates the view every time it changes.
-
-`@Binding` is used for properties that are passed to the view from another. The receiving view can read the binding value, react to changes and modify it's value.  
-`@Binding` variables are passed with the prefix `$`,
-
-### Simple View
-
-- Simplest view.
-- Permits the visualization of simple UIs.
-- Constituted by a body of type `View`
-
-```swift linenums="1"
-struct SimpleViewName: View {
-
-    let CONSTANT: Type
-    @State var variable: Type
-
-    func func(){
-        @Binding var variable: Type
-        // code here
-    }
-
-    // property needed
-    var body: some View {
-        // view contents
-    }
-}
-```
-
-### HStack, VStack, ZStack
-
-Used to organize elements without dealing with constraints or forcing the visualization on devices wih different screen sizes.
-
-```swift linenums="1"
-struct ContentView: View {
-    var body: some View {
-
-        // cannot have multiple stack at the same level
-        VStack {
-            HStack {
-                View()
-            }
-        }
-    }
-}
-```
-
-### Table View
-
-Most common view to present array contents, it automatically handles the scrolling of the page with the *bounce* effect.
-It can be integrated in a `NavigationView` to handle a `DetailView` of a selected item in the list.
-
-The basic object that creates the table view is the `List()`. It's job is to create a "cell" for every element in the array.
-The array can be filtered with a *search bar*.
-The array elements can be grouped with the `Section()` object that groups cells under a common name in the table.
-
-```swift linenums="1"
-// view name can be any
-struct TableView: View {
-    var array = [...]
-
-    var body: some View {
-        List(array) { iem in
-            TableCell(item: item)
-        }
-    }
-}
-
-// view name can be any
-struct TableCell: View {
-    let item: Any
-
-    var body: some View {
-        // cell content
-    }
-}
-```
-
-Every cell can have a link to visualize the details of the selected object. This is done by using `NavigationView` and `NavigationLink`.
-
-The `NavigationView` contains the list and the property `.navigationBarTitle()` sets the view title.
-It's possible to add other controls in the top part of the view (buttons, ...) using the property `.navigationBarItems()`.
-
-```swift linenums="1"
-struct ContentView: View {
-    let array = [...]
-    var body: some View {
-        NavigationView {
-            List(array) { item in
-                NavigationLink(destination: View()) {
-                    // link UI
-                }
-            }.navigationBarTitle(Text("Title"))
-        }
-    }
-}
-```
-
-### Tab Bar View
-
-This view handles a bar on the bottom of the screen with links to simple or more complex views.
-This is useful for designing pages that can be easily navigated by the user.
-
-```swift linenums="1"
-struct TabBarView: View {
-    var body: some View {
-
-        // first tab
-        Text("Tab Title")
-            .tabItem{
-                // tab selector design example
-                Image(systemImage: "house.fill")
-                Text("Home")
-            }
-
-        // n-th tab
-        Text("Tab Title")
-        .tabItem{
-            // tab selector design
-        }
-    }
-}
-```
-
-The `TabBar` construction is made applying the `.tabItem{}` parameter to the object or page that the tab will link to.
-It's possible to specify up to 5 `.tabItem{}` elements that will be displayed singularly in the `TabBar`.
-
-From the 6th element onwards, the first 4 elements will appear normally, meanwhile the 5th will become a "more" element that will open a `TableView` with the list of the other `.tabItem{}` elements. This page permission to define which elements will be visible.
-
-It's possible to integrate the NavigationView in the TabBar in two ways:
-
-- inserting it as a container for the whole `TabBar` (at the moment of the transition to the detail page the `TabBar` will be hidden)
-- inserting it as a container of a single `.tabItem{}` (the transition will happen inside the `TabBar` that will then remain visible)
-
-## View Elements
-
-### Text
-
-```swift linenums="1"
-Text("")
-```
-
-### Shapes
-
-```swift linenums="1"
-Rectangle()
-Circle()
-```
-
-### Spacing
-
-```swift linenums="1"
-Divider()
-Spacer()
-```
-
-### Image
-
-[System Images](https://developer.apple.com/design/human-interface-guidelines/sf-symbols/overview/)
-
-```swift linenums="1"
-Image(systemName: "sfsymbol")
-```
-
-### Button
-
-```swift linenums="1"
-Button(action: { /* statements */ }) {
-    Text("Label")
-    //or
-    Image(systemName = "sfsymbol")
-}
-
-// button with alert popup
-Button(action: { /* statements */ }) {
-    Text("abel")
-}.action(isPresented: $boolBinding) {
-    Alert(title: Text("Alert Popup Title"), message: Text("Alert Message"))
-}
-```
-
-### Style Options
-
-Common syle options:
-
-- `padding()`: adds an internal padding to the object.
-- `foregroundColor()`: defines the color of the text or contained object.
-- `background()`: defines the background color.
-- `font()`: sets font type, size, weight, ...
-- `cornerRadius()`: modifies the angles of the containing box.
-- `frame()`: sets a fixed size for the object.
-- `resizable()`, `scaleToFill()`, `scaleToFit()`: enables the resizing of an object inside another.
-- `clipShape()`: overlays a shape over the object
-- `overlay()`:  overlays an element over the object, more complex than clipShape
-- `shadow()`: Sets the object's shadow
-- `lineLimit()`: limits the number of visible lines in `TextField`
-
-```swift linenums="1"
-View().styleOption()
-// or
-View {
-
-}.styleOPtion()
-```
-
-## Forms & Input
-
-```swift linenums="1"
-Form {
-    Section (header: Text("Section Title")) {
-        // form components
-    }
-}
-```
-
-### Picker
-
-```swift linenums="1"
-// list item picker
-Picker(selction: $index, label: Text("Selection Title")) {
-    ForEach(0..<itemArray.count){
-        Text(itemArray[$0]).tag($0)  // tag adds the index of the selected item to the info of the Text()
-    }
-}
-```
-
-### Stepper
-
-```swift linenums="1"
-Stepper("\(number)", value: $number, in: start...end)
-```
-
-### TextField
-
-```swift linenums="1"
-TextField("Placeholder Text", text: $result)
-    .keyboardType(.<kb_type>)
-```
-
-### Slider
-
-```swift linenums="1"
-Slider(value: $numVariable)
-```
-
-## API Interaction
-
-```swift linenums="1"
-@State private var apiItems = [<struct>]()
-
-// struct should be Identifiable & Codable
-
-func loadData() {
-    guard let url = URL(string: "https://jsonplaceholder.typicode.com/todos")
-    else { print("Invalid URL") return }
-
-    let request = URLRequest(url: url)
-
-    URLSession.shared.dataTask(with: request) { data, response, error in
-        if let data = data {
-            if let response = try? JSONDecoder().decode([TaskEntry].self, from: data) {
-                DispatchQueue.main.async {
-                    self.itemsApi = response
-                }
-                return
-            }
-        }
-    }.resume()
-}
-```
diff --git a/docs/languages/swift/swift.md b/docs/languages/swift/swift.md
index 6b2412a..9f46bea 100644
--- a/docs/languages/swift/swift.md
+++ b/docs/languages/swift/swift.md
@@ -1,8 +1,4 @@
-# Swift / SwiftUI
-
-- Statically Typed
-
-[Building for Mac with VBox](https://medium.com/@twister.mr/installing-macos-to-virtualbox-1fcc5cf22801)
+# Swift
 
 ## Basics
 
diff --git a/mkdocs.yml b/mkdocs.yml
index edc2cb7..018475d 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -178,9 +178,6 @@ nav:
     - Bash:
         - Scripting: languages/bash/scripting.md
         - Commands: languages/bash/commands.md
-  - Devices:
-    - iOS:
-      - ContentView: devices/ios/content-view.md
   - Misc:
     - Git: misc/git.md
     - GraphQL: misc/graph-ql.md