I can not solve the error “coding classification not key value coding-compliant for the key”












0















It is a question.



This class is not key value code-compliant for the key error is given.



However, I am not sure which part is wrong. This error appears at cellForRowAt.



Thank you for your answer.



If you want it, I can also show the code of ContentTableViewCell, so please call out.



import UIKit

class SearchViewController: UIViewController, UISearchResultsUpdating {

@IBOutlet weak var tableview: UITableView!

var songs = [
"裁量権を持って、若者向けカレンダーアプリ開発をしたいiOSエンジニア募集!",
"自信を持って、応援出来るエンジニアを募集!"
]

var searchSongs = [String]()

func updateSearchResults(for searchController: UISearchController) {
let searchString = searchController.searchBar.text!
searchSongs = songs.filter {(name) -> Bool in
return name.contains(searchString)
}
tableview.reloadData()
}

override func viewDidLoad() {
super.viewDidLoad()
navigationController?.navigationBar.prefersLargeTitles = true
let searchController = UISearchController(searchResultsController:nil)
searchController.searchResultsUpdater = self
searchController.dimsBackgroundDuringPresentation = false
navigationItem.searchController = searchController
definesPresentationContext = true
delegate()
}
}




extension searchViewController: UITableViewDelegate, UITableViewDataSource {
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if navigationItem.searchController?.isActive == true {
return searchSongs.count
} else {
return songs.count
}
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableview.dequeueReusableCell(withIdentifier: "ContentTableViewCell", for: indexPath) as! ContentTableViewCell
if navigationItem.searchController?.isActive == true {
cell.commonInit(content: searchSongs[indexPath.row])
} else {
cell.commonInit(content: songs[indexPath.row])
}
return cell
}

func delegate() {
tableview.delegate = self
tableview.dataSource = self
let nibName = UINib(nibName: "ContentTableViewCell", bundle: nil)
self.tableview.register(nibName, forCellReuseIdentifier: "ContentTableViewCell")
}


}










share|improve this question


















  • 1





    can you add the error

    – Anbu.Karthik
    Nov 24 '18 at 11:07











  • Probably your nib references an outlet that isn't in your cell subclass

    – Paulw11
    Nov 24 '18 at 11:11











  • [<UIImageView 0x7fcdda442df0> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key . (null) objc[83878]: Attempt to use unknown class 0x600001b08e40. 105553154442304 It's the error

    – 小村祐輝
    Nov 24 '18 at 11:14


















0















It is a question.



This class is not key value code-compliant for the key error is given.



However, I am not sure which part is wrong. This error appears at cellForRowAt.



Thank you for your answer.



If you want it, I can also show the code of ContentTableViewCell, so please call out.



import UIKit

class SearchViewController: UIViewController, UISearchResultsUpdating {

@IBOutlet weak var tableview: UITableView!

var songs = [
"裁量権を持って、若者向けカレンダーアプリ開発をしたいiOSエンジニア募集!",
"自信を持って、応援出来るエンジニアを募集!"
]

var searchSongs = [String]()

func updateSearchResults(for searchController: UISearchController) {
let searchString = searchController.searchBar.text!
searchSongs = songs.filter {(name) -> Bool in
return name.contains(searchString)
}
tableview.reloadData()
}

override func viewDidLoad() {
super.viewDidLoad()
navigationController?.navigationBar.prefersLargeTitles = true
let searchController = UISearchController(searchResultsController:nil)
searchController.searchResultsUpdater = self
searchController.dimsBackgroundDuringPresentation = false
navigationItem.searchController = searchController
definesPresentationContext = true
delegate()
}
}




extension searchViewController: UITableViewDelegate, UITableViewDataSource {
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if navigationItem.searchController?.isActive == true {
return searchSongs.count
} else {
return songs.count
}
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableview.dequeueReusableCell(withIdentifier: "ContentTableViewCell", for: indexPath) as! ContentTableViewCell
if navigationItem.searchController?.isActive == true {
cell.commonInit(content: searchSongs[indexPath.row])
} else {
cell.commonInit(content: songs[indexPath.row])
}
return cell
}

func delegate() {
tableview.delegate = self
tableview.dataSource = self
let nibName = UINib(nibName: "ContentTableViewCell", bundle: nil)
self.tableview.register(nibName, forCellReuseIdentifier: "ContentTableViewCell")
}


}










share|improve this question


















  • 1





    can you add the error

    – Anbu.Karthik
    Nov 24 '18 at 11:07











  • Probably your nib references an outlet that isn't in your cell subclass

    – Paulw11
    Nov 24 '18 at 11:11











  • [<UIImageView 0x7fcdda442df0> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key . (null) objc[83878]: Attempt to use unknown class 0x600001b08e40. 105553154442304 It's the error

    – 小村祐輝
    Nov 24 '18 at 11:14
















0












0








0








It is a question.



This class is not key value code-compliant for the key error is given.



However, I am not sure which part is wrong. This error appears at cellForRowAt.



Thank you for your answer.



If you want it, I can also show the code of ContentTableViewCell, so please call out.



import UIKit

class SearchViewController: UIViewController, UISearchResultsUpdating {

@IBOutlet weak var tableview: UITableView!

var songs = [
"裁量権を持って、若者向けカレンダーアプリ開発をしたいiOSエンジニア募集!",
"自信を持って、応援出来るエンジニアを募集!"
]

var searchSongs = [String]()

func updateSearchResults(for searchController: UISearchController) {
let searchString = searchController.searchBar.text!
searchSongs = songs.filter {(name) -> Bool in
return name.contains(searchString)
}
tableview.reloadData()
}

override func viewDidLoad() {
super.viewDidLoad()
navigationController?.navigationBar.prefersLargeTitles = true
let searchController = UISearchController(searchResultsController:nil)
searchController.searchResultsUpdater = self
searchController.dimsBackgroundDuringPresentation = false
navigationItem.searchController = searchController
definesPresentationContext = true
delegate()
}
}




extension searchViewController: UITableViewDelegate, UITableViewDataSource {
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if navigationItem.searchController?.isActive == true {
return searchSongs.count
} else {
return songs.count
}
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableview.dequeueReusableCell(withIdentifier: "ContentTableViewCell", for: indexPath) as! ContentTableViewCell
if navigationItem.searchController?.isActive == true {
cell.commonInit(content: searchSongs[indexPath.row])
} else {
cell.commonInit(content: songs[indexPath.row])
}
return cell
}

func delegate() {
tableview.delegate = self
tableview.dataSource = self
let nibName = UINib(nibName: "ContentTableViewCell", bundle: nil)
self.tableview.register(nibName, forCellReuseIdentifier: "ContentTableViewCell")
}


}










share|improve this question














It is a question.



This class is not key value code-compliant for the key error is given.



However, I am not sure which part is wrong. This error appears at cellForRowAt.



Thank you for your answer.



If you want it, I can also show the code of ContentTableViewCell, so please call out.



import UIKit

class SearchViewController: UIViewController, UISearchResultsUpdating {

@IBOutlet weak var tableview: UITableView!

var songs = [
"裁量権を持って、若者向けカレンダーアプリ開発をしたいiOSエンジニア募集!",
"自信を持って、応援出来るエンジニアを募集!"
]

var searchSongs = [String]()

func updateSearchResults(for searchController: UISearchController) {
let searchString = searchController.searchBar.text!
searchSongs = songs.filter {(name) -> Bool in
return name.contains(searchString)
}
tableview.reloadData()
}

override func viewDidLoad() {
super.viewDidLoad()
navigationController?.navigationBar.prefersLargeTitles = true
let searchController = UISearchController(searchResultsController:nil)
searchController.searchResultsUpdater = self
searchController.dimsBackgroundDuringPresentation = false
navigationItem.searchController = searchController
definesPresentationContext = true
delegate()
}
}




extension searchViewController: UITableViewDelegate, UITableViewDataSource {
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if navigationItem.searchController?.isActive == true {
return searchSongs.count
} else {
return songs.count
}
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableview.dequeueReusableCell(withIdentifier: "ContentTableViewCell", for: indexPath) as! ContentTableViewCell
if navigationItem.searchController?.isActive == true {
cell.commonInit(content: searchSongs[indexPath.row])
} else {
cell.commonInit(content: songs[indexPath.row])
}
return cell
}

func delegate() {
tableview.delegate = self
tableview.dataSource = self
let nibName = UINib(nibName: "ContentTableViewCell", bundle: nil)
self.tableview.register(nibName, forCellReuseIdentifier: "ContentTableViewCell")
}


}







ios swift






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 24 '18 at 11:05









小村祐輝小村祐輝

257




257








  • 1





    can you add the error

    – Anbu.Karthik
    Nov 24 '18 at 11:07











  • Probably your nib references an outlet that isn't in your cell subclass

    – Paulw11
    Nov 24 '18 at 11:11











  • [<UIImageView 0x7fcdda442df0> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key . (null) objc[83878]: Attempt to use unknown class 0x600001b08e40. 105553154442304 It's the error

    – 小村祐輝
    Nov 24 '18 at 11:14
















  • 1





    can you add the error

    – Anbu.Karthik
    Nov 24 '18 at 11:07











  • Probably your nib references an outlet that isn't in your cell subclass

    – Paulw11
    Nov 24 '18 at 11:11











  • [<UIImageView 0x7fcdda442df0> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key . (null) objc[83878]: Attempt to use unknown class 0x600001b08e40. 105553154442304 It's the error

    – 小村祐輝
    Nov 24 '18 at 11:14










1




1





can you add the error

– Anbu.Karthik
Nov 24 '18 at 11:07





can you add the error

– Anbu.Karthik
Nov 24 '18 at 11:07













Probably your nib references an outlet that isn't in your cell subclass

– Paulw11
Nov 24 '18 at 11:11





Probably your nib references an outlet that isn't in your cell subclass

– Paulw11
Nov 24 '18 at 11:11













[<UIImageView 0x7fcdda442df0> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key . (null) objc[83878]: Attempt to use unknown class 0x600001b08e40. 105553154442304 It's the error

– 小村祐輝
Nov 24 '18 at 11:14







[<UIImageView 0x7fcdda442df0> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key . (null) objc[83878]: Attempt to use unknown class 0x600001b08e40. 105553154442304 It's the error

– 小村祐輝
Nov 24 '18 at 11:14














1 Answer
1






active

oldest

votes


















2














Check in your Storyboard. I think any outlet is not connected properly. enter image description here



Check is there any yellow warning triangle in your storyboard on which screen this error is coming. If you found any, remove and connect the outlet again.






share|improve this answer
























  • oh! thank you! It was solved :)

    – 小村祐輝
    Nov 24 '18 at 17:30











  • Good !! you did it.

    – iDev750
    Nov 24 '18 at 18:14











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53457483%2fi-can-not-solve-the-error-coding-classification-not-key-value-coding-compliant%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









2














Check in your Storyboard. I think any outlet is not connected properly. enter image description here



Check is there any yellow warning triangle in your storyboard on which screen this error is coming. If you found any, remove and connect the outlet again.






share|improve this answer
























  • oh! thank you! It was solved :)

    – 小村祐輝
    Nov 24 '18 at 17:30











  • Good !! you did it.

    – iDev750
    Nov 24 '18 at 18:14
















2














Check in your Storyboard. I think any outlet is not connected properly. enter image description here



Check is there any yellow warning triangle in your storyboard on which screen this error is coming. If you found any, remove and connect the outlet again.






share|improve this answer
























  • oh! thank you! It was solved :)

    – 小村祐輝
    Nov 24 '18 at 17:30











  • Good !! you did it.

    – iDev750
    Nov 24 '18 at 18:14














2












2








2







Check in your Storyboard. I think any outlet is not connected properly. enter image description here



Check is there any yellow warning triangle in your storyboard on which screen this error is coming. If you found any, remove and connect the outlet again.






share|improve this answer













Check in your Storyboard. I think any outlet is not connected properly. enter image description here



Check is there any yellow warning triangle in your storyboard on which screen this error is coming. If you found any, remove and connect the outlet again.







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 24 '18 at 11:27









iDev750iDev750

5891314




5891314













  • oh! thank you! It was solved :)

    – 小村祐輝
    Nov 24 '18 at 17:30











  • Good !! you did it.

    – iDev750
    Nov 24 '18 at 18:14



















  • oh! thank you! It was solved :)

    – 小村祐輝
    Nov 24 '18 at 17:30











  • Good !! you did it.

    – iDev750
    Nov 24 '18 at 18:14

















oh! thank you! It was solved :)

– 小村祐輝
Nov 24 '18 at 17:30





oh! thank you! It was solved :)

– 小村祐輝
Nov 24 '18 at 17:30













Good !! you did it.

– iDev750
Nov 24 '18 at 18:14





Good !! you did it.

– iDev750
Nov 24 '18 at 18:14


















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53457483%2fi-can-not-solve-the-error-coding-classification-not-key-value-coding-compliant%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Contact image not getting when fetch all contact list from iPhone by CNContact

count number of partitions of a set with n elements into k subsets

A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks