草庐IT

First_Name_Label

全部标签

ios - 当一个 Label adjustFontSizeToFitWidth 时,在 UITableViewCell 的 UILabels 上设置匹配的字体大小

我在自定义tableViewCell中有两个UILabel。一个标签有宽度限制,在较小的屏幕上设置为adjustFontSizeToFitWidth,例如5S。当第一个标签没有特定的宽度限制时,如何让另一个UILabel匹配第一个标签的字体大小?似乎sizeWithFont:minFontSize:actualFontSize:forWidth:lineBreakMode:在iOS7中被弃用了,那么Swift的解决方案是什么?这个答案WhendoadjustsFontSizeToFitWidthorboundingRectWithSizechangethecontext.actualS

ios - UIPageController : Turning the page forward then backward quickly only updates the first page

我的类SliderPgaeViewController:UIPageViewController具有如下滚动过渡样式:classSliderPgaeViewController:UIPageViewController,UIPageViewControllerDelegate,UIPageViewControllerDataSource,PlayerUpdatePageControllerDelegate{varlastPendingIndex:Int=0varsliderPageDelegate:SliderPageDelegate?=nilletplayerManager=Play

ios - Xcode UI测试 : label disappears from hierarchy and won't come back

这是使用Xcode7.2.1和Swift2.0。我有一个包含用于显示错误消息的UILabel的表格单元格。因此在初始加载时使用如下代码将其清空:cell.errorLabel.alpha=0.0cell.errorLabel.text=nil稍后,当我检测到要显示的错误时,我会这样做:cell.label.text="to"cell.errorLabel.alpha=1.0cell.errorLabel.text="Error!!!!"这在运行应用程序时工作正常。但是,在UI测试中运行时,我尝试测试错误是否显示如下:lettoCell=XCUIApplication().tables.

ios - 如何以编程方式设置 UILabels 的约束,其中 Label Count 等于 Swift 中的主屏幕高度

我想创建这个格式label1|label2|label3|label4label5|label6|label7|其中标签计数等于View高度。并且还想设置约束。下面的代码是创建UILabels:foriin0...Int(self.view.frame.height){letlabel=UILabel(frame:CGRect(x:0,y:0,width:50,height:50))label.textAlignment=NSTextAlignment.centerlabel.text="label"label.sizeToFit()self.view.addSubview(label

Swift tableview Cell label change Text by button 标签

我在tableview单元格上创建了​​一个按钮和两个标签,当单击按钮时然后更改tableview标签文本这是我的代码funcbuttonLike_ww(sender:AnyObject?){vartag:NSInteger=sender!.tag;tag_last_button_clicked=tag;//foundtableletcell=TableViewCell_trandingjive(style:UITableViewCellStyle.Default,reuseIdentifier:"Cell")cell.label_dislike.text="20"cell.label

swift - 错误 : "no such module <Swift Cocoapod name>" with Jenkins

我正在尝试设置Jenkinsslave,以构建我的Swift项目,该项目使用名为“Freddy”的Swiftpod。问题是构建失败并出现错误:error:nosuchmodule'Freddy'这是我的Pod文件:platform:ios,'8.0'use_frameworks!target'MyProject'dopod'AFNetworking','~>3.0'pod'Freddy'endCocoaPods版本0.39.0Xcode7.2.1(直接从Xcode构建时没有问题)附言。在我将其替换为AFNetworking之前,Alamofirepod也出现了同样的问题。附言。Jenk

swift - 在不再次运行的情况下更改 touch 内部的 node.name?

我想点击某个spritenode,改变那个spritenode的值。这就是问题所在。当我这样做并设置一个if语句时,它知道转到该if语句。但是,我不希望它在下次单击按钮之前运行。示例:apple.name="apple"overridefunctouchesBegan(_touches:Set,withevent:UIEvent?){fortouchintouches{letlocation=touch.location(in:self)letnode:SKNode=self.atPoint(location)ifnode.name=="apple"{appple.name="oran

docker: Error response from daemon: Conflict. The container name is already in use by container You

问题:docker启动docker容器时报错docker:Errorresponsefromdaemon:Conflict.ThecontainernameisalreadyinusebycontainerYouhavetoremove(orrename)thatcontainertobeabletoreusethatname.解决办法:在此之前已经启动了相同名字的docker容器,ThecontainernameisalreadyinusebycontainerYouhavetoremove(orrename)thatcontainertobeabletoreusethatname删除这个c

iOS 和 Swift : CLLocationManagerDelegate not updating location coordinates beyond the first location

使用以下代码,我的currentLat和currentLong不会更新到第一个位置之外。locations永远不会超过1个项目,而且总是完全相同。funclocationManager(manager:CLLocationManager,didUpdateLocationslocations:[CLLocation]){letloc:CLLocation=locations[locations.count-1]currentLat=loc.coordinate.latitudecurrentLong=loc.coordinate.longitude}我一直在做的所有搜索只显示了如果它根

ios - Rx swift : code working only first time

我是RxSwift的新手。我的代码中发生了一些奇怪的事情。我有一个CollectionView和Driver["String"]绑定(bind)数据。varitems=fetchImages("flower")items.asObservable().bindTo(self.collView.rx_itemsWithCellIdentifier("cell",cellType:ImageViewCell.self)){(row,element,cell)incell.imageView.setURL(NSURL(string:element),placeholderImage:UIIm