« first day (1381 days earlier)   

3:30 AM
/hangman
/awake
 
3:45 AM
/sleep
 
 
1 hour later…
4:46 AM
Good morning all :)
 
5:15 AM
Hello Guys, Do you know how to add multiple dynamically hyperlinks button in swift 3 programming?
\hangman
/hangman
/awake
/hangman
 
5:35 AM
good morning all
 
Good morning
 
which is open best open source framework of chat for ios and android ? i had experience xmpp with openfire but that had few issues.
 
5:51 AM
@Shubhank call back
i have requirement to clone this app
if someone can do please contact me asap
 
let me check
very big app it is @HimanshuAgarwal
all instruments
 
yes
call me back
 
after some time
breakfast is served
 
6:11 AM
please help me
2
Q: UIView not showing in a UICollectionView

cristan likaI am new to iOS programming, and want to add a white 8px bar in my collection menu. However, I cannot seem to do it programmatically. I have tried several ways but none of them seem to work. @IBOutlet weak var manubarCollectionView: UICollectionView! var horizontalBarLeftAnchorConstraint...

 
is it a separate cell or same cell the View and list ??
 
@IOS_PROGRAMMER welcome to the chat. Have a good day :). Please make sure to go through the room F.A.Q.
 
@IOS_PROGRAMMER sorry
there have two collection view . menu and item list .. and i want to do that menu collection view
 
put that View in stroyBoard in cell and give AutoLayouts it will get displayed
 
6:26 AM
sorry i don't do that . could you suggest me anything else
 
try to use this custom control.
https://github.com/xmartlabs/XLPagerTabStrip
@cristanlika
 
3rty party can't used
but thanks for you suggestion
 
7:12 AM
/hang
 
 +---+
 |   |
 |
 |
 |
_+_
- a - - - - - - - - - - - a -
 
/hang e
 
 +---+
 |   |
 |
 |
 |
_+_
- a - - - - - e - - - - - a -
 
/hint
 
Hint obscured till 2 lives left
 
7:12 AM
/hang r
 
 +---+
 |   |
 |
 |
 |
_+_
- a - - - - - e - - - - - a r
 
/hang d
 
 +---+
 |   |
 |
 |
 |
_+_
- a - - - - - e - d - - - a r
 
/hang n
 
 +---+
 |   |
 |
 |
 |
_+_
- a - - - n - e n d - - - a r
 
/hang o
 
 +---+
 |   |
 |   O
 |
 |
_+_
- a - - - n - e n d - - - a r
 
/hang l
 
 +---+
 |   |
 |   O
 |
 |
_+_
- a - - - n - e n d - l - a r
 
/hang t
 
7:15 AM
 +---+
 |   |
 |   O
 |
 |
_+_
- a - - - n t e n d - l - a r
 
/hang i
 
 +---+
 |   |
 |   O
 |
 |
_+_
- a - - i n t e n d - l - a r
 
/hang u
 
 +---+
 |   |
 |   O
 |
 |
_+_
- a - - i n t e n d u l - a r
 
/hang s
 
7:17 AM
 +---+
 |   |
 |   O
 |
 |
_+_
s a - - i n t e n d u l - a r
 
/hang c
 
 +---+
 |   |
 |   O
 |
 |
_+_
s a c - i n t e n d u l - a r
 
/hang h
 
 +---+
 |   |
 |   O
 |
 |
_+_
s a c h i n t e n d u l - a r
 
/hang k
 
7:18 AM
 +---+
 |   |
 |   O
 |
 |
_+_
s a c h i n t e n d u l k a r
Success. You should get back to work
 
@ValerioZhang welcome to the chat. Have a good day :). Please make sure to go through the room F.A.Q.
 
does anyone know how to insert a uiview into a uicollectionviewcell
 
@Shubhank
 
7:37 AM
@ValerioZhang try adding like this Cell.contenView.addSubView(view)
 
will i write that in the cellforitem at function?
 
thx btw
so numberofitemsat section returns 1
 
whats ur requirement actually
 
well i have a uiview
that has a camera implemented in it
im trying to put it inside a collectionviewcell
since i had an app whose mainscreen is a uicollectionview that scrolls .horizontal
so i'm trying to page between uiviewcontrollers
thx again
 
7:43 AM
@HimanshuAgarwal
 
im a very confused kid
class ScannerCell: UICollectionViewCell, UICollectionViewDelegate, UICollectionViewDelegateFlowLayout {

let cellId = "cellId"

override init(frame: CGRect){
super.init(frame: frame)
}

required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}

func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return 1
}

var camera: ScannerController

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
is giving me an error saying camera is not a uiview
while it is a uiviewcontroller
 
it it will give you erro coz your trying to add viewcontrolller to collectionview of same class where did u declare View which you want to add to collectionview
 
in another controller
inside ScannerController
 
cell.contentView.addSubview(camera) i think u declared view name also same as camera so its giving conflict change view name where u declared coz class name is same
 
7:56 AM
how are the class names the same?
 
var camera: ScannerController what is camera here ? this one your trying to add to collectionview right?
 
yeah
correct
camera is a UIViewController
it's essentially the camera on the iphone
it takes pictures
 
0
Q: I need to make an library which can be used by other android apps as an library dependencies with some files hidden

Ritu NagpalI want to make an library for android which can be used by other android apps as an dependencies. I know how to make an library from studio but please help me letting know, how to make files hidden from the library so that user can not see some files as in files there will be some token which i d...

hi ,can anyone please help me out of this ?
 
6
A: Hide classes of library - Android

Andrew AlcockMany projects use ProGuard to achieve this protection. You can use Gradle to build library components for Android Libraries, just like apps, can be build in development or release build types Proguard can be configured to run on a component (app or library), but only in the release build type. ...

read all this theory :p
 
smjh ni arha
 

« first day (1381 days earlier)